by Ice Cream Jonsey » Mon Mar 29, 2010 10:36 pm
I don't know regular expressions that well. I understand the concepts, but I don't have the syntax down. Lysander found a bug for me and it made me want to learn them to run a scan for the game's contents.
In the game I keep track of the following for dialogue:
- what a character can say
- what state that option is in (inactive, active, used)
(It's a different system than in FoD, ND and Pantomime.)
I named one array CharacterThink and one CharacterTalk. And I am always confusing the two. I make an assignment like this when a dialogue option has been used:
PlayerTalk[11] = 2
Well, if I have Think there instead of Talk... it wrecks my arrays. My precious, delicious arrays.
So, to end this story already, I did a regex expression for Think\[.*\] = 2 to make sure it didn't appear anywhere, as that would always be wrong.
And it found something.
So that fixed a future, unfound bug.
Yeaaaaah regexes!!!
I don't know regular expressions that well. I understand the concepts, but I don't have the syntax down. Lysander found a bug for me and it made me want to learn them to run a scan for the game's contents.
In the game I keep track of the following for dialogue:
- what a character can say
- what state that option is in (inactive, active, used)
(It's a different system than in FoD, ND and Pantomime.)
I named one array CharacterThink and one CharacterTalk. And I am always confusing the two. I make an assignment like this when a dialogue option has been used:
PlayerTalk[11] = 2
Well, if I have Think there instead of Talk... it wrecks my arrays. My precious, delicious arrays.
So, to end this story already, I did a regex expression for Think\[.*\] = 2 to make sure it didn't appear anywhere, as that would always be wrong.
And it found something.
So that fixed a future, unfound bug.
Yeaaaaah regexes!!!