Initial community commit
This commit is contained in:
62
Src/Wasabi/api/script/objects/c_script/h_slider.cpp
Normal file
62
Src/Wasabi/api/script/objects/c_script/h_slider.cpp
Normal file
@@ -0,0 +1,62 @@
|
||||
/* This file was generated by Maki Compiler, do not edit manually */
|
||||
|
||||
#include <precomp.h>
|
||||
|
||||
#include <api/script/objcontroller.h>
|
||||
#include "h_slider.h"
|
||||
|
||||
H_Slider::H_Slider(ScriptObject *o) : H_GuiObject(o) {
|
||||
inited = 0;
|
||||
obj = NULL;
|
||||
H_hook(o);
|
||||
}
|
||||
|
||||
H_Slider::H_Slider() {
|
||||
inited = 0;
|
||||
obj = NULL;
|
||||
}
|
||||
|
||||
void H_Slider::H_hook(ScriptObject *o) {
|
||||
ASSERT(!inited);
|
||||
ScriptObjectController *controller = o->vcpu_getController();
|
||||
obj = controller->cast(o, sliderGuid);
|
||||
if (obj != o && obj != NULL)
|
||||
o = obj;
|
||||
else
|
||||
obj = NULL;
|
||||
|
||||
addMonitorObject(o, &sliderGuid);
|
||||
|
||||
int iter = WASABI_API_APP->app_getInitCount();
|
||||
if (!loaded || loaded != iter) {
|
||||
onsetposition_id= WASABI_API_MAKI->maki_addDlfRef(o->vcpu_getController(), L"onSetPosition", this);
|
||||
onpostedposition_id= WASABI_API_MAKI->maki_addDlfRef(o->vcpu_getController(), L"onPostedPosition", this);
|
||||
onsetfinalposition_id= WASABI_API_MAKI->maki_addDlfRef(o->vcpu_getController(), L"onSetFinalPosition", this);
|
||||
loaded = 1;
|
||||
}
|
||||
inited=1;
|
||||
}
|
||||
|
||||
H_Slider::~H_Slider() {
|
||||
if (!inited) return;
|
||||
WASABI_API_MAKI->maki_remDlfRef(this);
|
||||
}
|
||||
|
||||
ScriptObject *H_Slider::getHookedObject() {
|
||||
if (obj != NULL) return obj;
|
||||
return H_SLIDER_PARENT::getHookedObject();
|
||||
}
|
||||
|
||||
int H_Slider::eventCallback(ScriptObject *object, int dlfid, scriptVar **params, int nparams) {
|
||||
if (object != getHookedObject()) return 0;
|
||||
if (H_SLIDER_PARENT::eventCallback(object, dlfid, params, nparams)) return 1;
|
||||
if (dlfid == onsetposition_id) { hook_onSetPosition(GET_SCRIPT_INT(*params[0])); return 1; }
|
||||
if (dlfid == onpostedposition_id) { hook_onPostedPosition(GET_SCRIPT_INT(*params[0])); return 1; }
|
||||
if (dlfid == onsetfinalposition_id) { hook_onSetFinalPosition(GET_SCRIPT_INT(*params[0])); return 1; }
|
||||
return 0;
|
||||
}
|
||||
|
||||
int H_Slider::onsetposition_id=0;
|
||||
int H_Slider::onpostedposition_id=0;
|
||||
int H_Slider::onsetfinalposition_id=0;
|
||||
int H_Slider::loaded=0;
|
||||
Reference in New Issue
Block a user