Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "ScaleformCallbacks.h"
- #include <typeinfo>
- GFxValue::~GFxValue()
- {
- CleanManaged();
- }
- void GFxValue::AddManaged(void)
- {
- if(IsManaged())
- CALL_MEMBER_FN(objectInterface, AddManaged_Internal)(this, data.obj);
- }
- void GFxValue::CleanManaged(void)
- {
- if(IsManaged())
- {
- CALL_MEMBER_FN(objectInterface, ReleaseManaged_Internal)(this, data.obj);
- objectInterface = NULL;
- type = kType_Undefined;
- }
- }
- void GFxValue::SetUndefined(void)
- {
- CleanManaged();
- type = kType_Undefined;
- }
- void GFxValue::SetNull(void)
- {
- CleanManaged();
- type = kType_Null;
- }
- void GFxValue::SetBool(bool value)
- {
- CleanManaged();
- type = kType_Bool;
- data.boolean = value;
- }
- void GFxValue::SetNumber(double value)
- {
- CleanManaged();
- type = kType_Number;
- data.number = value;
- }
- void GFxValue::SetString(const char * value)
- {
- CleanManaged();
- type = kType_String;
- data.string = value;
- }
- void GFxValue::SetWideString(const wchar_t * value)
- {
- CleanManaged();
- type = kType_WideString;
- data.wideString = value;
- }
- bool GFxValue::GetBool(void)
- {
- switch(GetType())
- {
- case kType_Bool: return data.boolean;
- case kType_Number: return data.number != 0;
- default: HALT("GFxValue::GetBool: bad type"); return false;
- }
- }
- const char * GFxValue::GetString(void)
- {
- if(GetType() != kType_String)
- return NULL;
- if(IsManaged())
- return *data.managedString;
- else
- return data.string;
- }
- const wchar_t * GFxValue::GetWideString(void)
- {
- if(GetType() != kType_WideString)
- return NULL;
- if(IsManaged())
- return *data.managedWideString;
- else
- return data.wideString;
- }
- double GFxValue::GetNumber(void)
- {
- switch(GetType())
- {
- case kType_Number: return data.number;
- case kType_Bool: return data.boolean ? 1 : 0;
- default: HALT("GFxValue::GetNumber: bad type"); return 0;
- }
- }
- bool GFxValue::HasMember(const char * name)
- {
- return CALL_MEMBER_FN(objectInterface, HasMember)(data.obj, name, IsDisplayObject());
- }
- bool GFxValue::SetMember(const char * name, GFxValue * value)
- {
- return CALL_MEMBER_FN(objectInterface, SetMember)(data.obj, name, value, IsDisplayObject());
- }
- bool GFxValue::GetMember(const char * name, GFxValue * value)
- {
- return CALL_MEMBER_FN(objectInterface, GetMember)(data.obj, name, value, IsDisplayObject());
- }
- bool GFxValue::DeleteMember(const char * name)
- {
- return CALL_MEMBER_FN(objectInterface, DeleteMember)(data.obj, name, IsDisplayObject());
- }
- bool GFxValue::Invoke(const char * name, GFxValue * result, GFxValue * args, UInt32 numArgs)
- {
- return CALL_MEMBER_FN(objectInterface, Invoke)(data.obj, result, name, args, numArgs, IsDisplayObject());
- }
- bool GFxValue::PushBack(GFxValue * value)
- {
- return CALL_MEMBER_FN(objectInterface, PushBack)(data.obj, value);
- }
- UInt32 GFxValue::GetArraySize()
- {
- return CALL_MEMBER_FN(objectInterface, GetArraySize)(data.obj);
- }
- bool GFxValue::GetElement(UInt32 index, GFxValue * value)
- {
- return CALL_MEMBER_FN(objectInterface, GetElement)(data.obj, index, value);
- }
- bool GFxValue::GetDisplayInfo(DisplayInfo * displayInfo)
- {
- return CALL_MEMBER_FN(objectInterface, GetDisplayInfo)(data.obj, displayInfo);
- }
- bool GFxValue::SetDisplayInfo(DisplayInfo * displayInfo)
- {
- return CALL_MEMBER_FN(objectInterface, SetDisplayInfo)(data.obj, displayInfo);
- }
- UInt32 g_GFxFunctionHandler_count = 0;
- GFxFunctionHandler::GFxFunctionHandler()
- {
- g_GFxFunctionHandler_count++;
- }
- GFxFunctionHandler::~GFxFunctionHandler()
- {
- g_GFxFunctionHandler_count--;
- }
- FunctionHandlerCache g_functionHandlerCache;
- const FxDelegateHandler::Callback PlaySoundCallback = (FxDelegateHandler::Callback)0x00899940;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement