Jump to content

Setting a Global Variable from the tp2/Defining GAME_IS


Thimblerig

Recommended Posts

An alternative solution to the problem:

 

You could set up a WeiDU variable for each platform (GAMEISBGT, GAMEISTUTU, etc.) and initialize the value to True() if the current game matches that platform and False() otherwise.

OUTER_TEXT_SPRINT GAMEISBGT ~False()~
OUTER_TEXT_SPRINT GAMEISTUTU ~False()~
// etc.

ACTION_IF (GAME_IS ~bgt~) BEGIN
  OUTER_TEXT_SPRINT GAMEISBGT ~True()~
END
ELSE ACTION_IF (GAME_IS ~tutu tutu_totsc~) BEGIN
  OUTER_TEXT_SPRINT GAMEISTUTU ~True()~
END
// etc.

After setting these variables, compiling dialogues with EVALUATE_BUFFER would let you use them in your triggers to make replies and states that are only active on particular platforms.

Link to comment

Of course! I think I misunderstood the question completely. If you want to use different variable numbers for your .d-files upon instaling, using OUTER_SPRINT is the way to go.

 

I'd try a hack like

OUTER_SPRINT ~variable_value~ ~X~ With "X" being the different numbers you want for the different games.

 

In the .d, you would use "Global("T1GameIs","GLOBAL",%variable_value%)" and COMPILE EVALUATE_BUFFER

 

I'm at the wrong computer, but I could provide more code tonight if necessary.

Link to comment

And in case you don't want the alternative, it's the same idea as Mike presented--you set a variable with GAME_IS, and then abuse EVALUATE_BUFFER to get it into a script:

 

ACTION_IF (GAME_IS ~bgt~) BEGIN
  OUTER_SET game = 1
END ELSE 
ACTION_IF (GAME_IS ~tutu tutu_totsc~) BEGIN
  OUTER_SET game = 2
END ELSE 
ACTION_IF (GAME_IS ~bgee~) BEGIN
  OUTER_SET game = 3
END ELSE BEGIN // not bgt, tutu, or bgee; must be bg
  OUTER_SET game = 4
END

<<<<<<<<...\inlined\foo.baf
IF
  Global("T1GameIs","GLOBAL",0)
THEN
  RESPONSE #100
    SetGlobal("T1GameIs","GLOBAL",%game%)
END
>>>>>>>>

EXTEND_BOTTOM ~baldur.bcs~ ~...\inlined\foo.baf~ EVALUATE_BUFFER
That initial ACTION_IF/GAME_IS tree can be as complicated or simple as you want.
Link to comment

I ended up with a small handful of OUTER_SPRINT ~GAME_IS_EE~ ~True()~/~False~/~Monkeys!~ definitions along with the rest of the cross-platform variables: didn't take up much space, easy to read when I'm debugging files, and turns out all I needed was a very occasional True/False trigger. So that's okay.

 

Thank you for your help.

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...