Get name of a primitive passed as parameter to C++

Started by
9 comments, last by WitchLord 11 years, 9 months ago
Hi,

like this, in script

Load(int_variable);

in c++

void Load(void *ref, int typeId)
{
// find name of ref, not type name
}


script copies and passes a temp value to c++
i cant use @int_variable to pass the actual pointer.

i currently pass a name as a string then iterate over properties and find value.
but that is slow. ( Load(const string &in) )

is there a way to get address of primitives?

thanks.
Advertisement
I'm afraid I don't understand what you're trying to accomplish.


What is the Load() function supposed to do? Return an integer value?

If it is then you should register it as &out, i.e. an output reference.


// script
void func()
{
int variable;
Load(variable);
assert( variable == 42 );
}

// C++
// Registered with signature "void Load( ? &out )"
void Load(void *ref, int typeId)
{
if( typeId == asTYPEID_INT32 )
{
*(int*)ref = 42;
}
}

// or with signature "void Load(int &out)"
void Load(int &var)
{
var = 42;
}

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

Is this intended to be some lightweight way for (limited) saving of the script's state? For that, you can check out the Serializer addon: http://www.angelcode.com/angelscript/sdk/docs/manual/doc_addon_serializer.html

Is this intended to be some lightweight way for (limited) saving of the script's state? For that, you can check out the Serializer addon: http://www.angelcode...serializer.html


you are really insightful. :)
you did same with my other thread by asking unary operator.
i wish i understood what code does just by looking 4 lines of it :)

about serializer addon, it is not what i want.
i want same syntax as boost::serialization library.

here is a better explanation of what i want to do:

i just want to learn name of that integer, i dont want change or return it.

i already register it as Load(?&out)

pointer i get is not same as it is in script. so i cant find its name

here is how it works

class Test
{
int a;
float b;
Test2 child; // this has its own Serialize() function


Serialization @Serialize()
{
Serialization @ser;
@ser = CreateSerialization(@this);

ser << a; // << operator is Load(?&out)
ser << b;
ser << @child;

return @ser;
}

}
Perhaps this can be of use: http://pastebin.com/bQ0j8YMV
It has some stuff specific to the game it is from, and requires some extra engine functions to be able to serialize floats. It does not know the name of the resource it tries to serialize though, so it relies on the order of << and >> calls.

Perhaps this can be of use: http://pastebin.com/bQ0j8YMV
It has some stuff specific to the game it is from, and requires some extra engine functions to be able to serialize floats. It does not know the name of the resource it tries to serialize though, so it relies on the order of << and >> calls.


thanks, i will use some parts of this in binary output portion.
i had some goals starting this,
- human readable output
- order of saved variable do not matter
- adding new variable does not corrupt old saves
- removing variables does not corrupt saved files
- no need to modify c++ code

to be used in:
- save/load object to file
- debugger, readable text dump of objects
- transfer state over tcp

but i just cant find a way to learn primitives' name when they are passed as references.
i am stuck with
ser << "int_var";
but i want
ser << int_var;
I'm afraid it simply doesn't work that way. In order to guarantee that the reference sent to a function AngelScript will sometime have to send a reference to a temporary variable rather than to the real one, when there may be a change the real one is destroyed during the function call.

You can turn on unsafe references, which will let AngelScript send the reference to the real variable as an &inout reference. However, I cannot guarantee that this will allow you to find the name of the real variable in all instances.

To turn on unsafe referecences, the application should call:


engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCSE, true);


Remember, a badly written script can crash the application if you turn this on.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game


I'm afraid it simply doesn't work that way. In order to guarantee that the reference sent to a function AngelScript will sometime have to send a reference to a temporary variable rather than to the real one, when there may be a change the real one is destroyed during the function call.

You can turn on unsafe references, which will let AngelScript send the reference to the real variable as an &inout reference. However, I cannot guarantee that this will allow you to find the name of the real variable in all instances.

To turn on unsafe referecences, the application should call:


engine->SetEngineProperty(asEP_ALLOW_UNSAFE_REFERENCSE, true);


Remember, a badly written script can crash the application if you turn this on.


came this far without using asEP_ALLOW_UNSAFE_REFERENCE, i am scared of it :)
passing as string is ok
thanks.
You said the issue with the original technique was the need to iterate through all your member variables -- is making a hashmap acceptable? It still involves processing a string, but operates in ~O(1) time.

came this far without using asEP_ALLOW_UNSAFE_REFERENCE, i am scared of it


Don't be. My team has been using it since close to 3 years already and the only time we had a crash related to it turned out to be an obscure bug somewhere in AS which was fixed very quickly afterwards by Andreas. The setting does make life easier.

This topic is closed to new replies.

Advertisement