Dynamic Variable Naming / Variable Variables / Indirect Variable Access
#1

I've been told this is impossible in C so I have very little hope it's possible in P, but what I'm trying to do is use this for a textdraw system, whereby the name the variable containing the textdraw is referenced dynamically, such as:

Storing the Textdraw Variable names
pawn Code:
new Array[1][1] = {
{"ArrayName"}
};
Referencing the Variable Name
pawn Code:
new Text:Array[0][0] = TextDrawCreate(blaa blaa);
Obviously this doesn't work, but any idea on a system that would achieve similar results? What I'm trying to achieve is a none-static system, otherwise applying the textdraw effects has to be done on individual textdraw names which is not an option...

If this isn't a clear enough explanation, it is somewhat achieved with PHP's $$Variable system.
Reply
#2

Is this?
pawn Code:
new Text:TextDrawID[2];

TextDrawID[0] = TextDrawCreate(...);
TextDrawID[1] = TextDrawCreate(...);
Reply
#3

He means using a string as a variable name, I assume. No this isn't possible as far as I know, as variable names are only pre-compile, they 'disappear' (for lack of a better word..) at compile time.
Reply
#4

Yeah that's what I thought. Only alternative I've been able to come up with so swap the variable names with array indexes, but going to experiment with this tomorrow.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)