diff --git a/2dlib/gr.h b/2dlib/gr.h index 76f89baf2..9f68eee6d 100644 --- a/2dlib/gr.h +++ b/2dlib/gr.h @@ -352,7 +352,7 @@ class grSurface { // this is a software bitmap not video driver dependant // ---------------------------------------------------------------------------- -class grMemorySurface : public grSurface { +class grMemorySurface final : public grSurface { bool m_FirstTimeInit; // do special stuff if we are initializing for first time bool m_AllowInit; // we only allow initialization if we didn't create it. @@ -375,7 +375,7 @@ class grMemorySurface : public grSurface { // this is a hardware bitmap allocated from the video driver // ---------------------------------------------------------------------------- -class grHardwareSurface : public grSurface { +class grHardwareSurface final : public grSurface { public: grHardwareSurface(); grHardwareSurface(int w, int h, int bpp, unsigned flags = 0, const char *name = NULL); @@ -390,7 +390,7 @@ class grHardwareSurface : public grSurface { // is used by the grViewport class to draw onto the screen // ---------------------------------------------------------------------------- -class grScreen : public grSurface { +class grScreen final : public grSurface { friend class grViewport; public: diff --git a/AudioEncode/adecode.cpp b/AudioEncode/adecode.cpp index 478ee147b..8b6dc7474 100644 --- a/AudioEncode/adecode.cpp +++ b/AudioEncode/adecode.cpp @@ -23,7 +23,7 @@ using namespace AudioDecoder; namespace { -class InternalAudioDecoder : public IAudioDecoder { +class InternalAudioDecoder final : public IAudioDecoder { public: InternalAudioDecoder(ReadDataFunction readerFunction, void *pReaderData); ~InternalAudioDecoder(); diff --git a/Descent3/mmItem.h b/Descent3/mmItem.h index 55d5e0f22..2605c6a16 100644 --- a/Descent3/mmItem.h +++ b/Descent3/mmItem.h @@ -142,7 +142,7 @@ class tmmItemQueue { ////////////////////////////////////////////////////////////////////// class mmInterface; // class mmItem -class mmItem : public UIGadget { +class mmItem final : public UIGadget { char *m_text; // text for item int16_t m_alpha; // alpha for text item int16_t m_satcount; diff --git a/Descent3/newui.h b/Descent3/newui.h index 973721b5c..f39824b79 100644 --- a/Descent3/newui.h +++ b/Descent3/newui.h @@ -373,7 +373,7 @@ const tUIClass newuiNewClass = 1000; // NewUIGameWindow // this draws a UI window, but with a not-so-cool faded background. -class NewUIWindow : public UIWindow { +class NewUIWindow final : public UIWindow { chunked_bitmap m_Chunk; public: @@ -411,7 +411,7 @@ class NewUIGameWindow : public newuiTiledWindow { // NewUIMessageBox // this draws a UI window, but with the cool standard game dialog background. -class NewUIMessageBox : public NewUIGameWindow { +class NewUIMessageBox final : public NewUIGameWindow { public: NewUIMessageBox(); @@ -421,7 +421,7 @@ class NewUIMessageBox : public NewUIGameWindow { // NewUISlider // this draws a nicer loking slider. -class NewUISlider : public UISlider { +class NewUISlider final : public UISlider { UIBitmapItem m_SliderBar; UIBitmapItem m_Slider; @@ -432,7 +432,7 @@ class NewUISlider : public UISlider { // NewUIEdit // this draws a nicer edit box -class NewUIEdit : public UIEdit { +class NewUIEdit final : public UIEdit { UIBitmapItem m_EditLeft; UIBitmapItem m_EditCen; UIBitmapItem m_EditRight; @@ -450,7 +450,7 @@ class NewUIEdit : public UIEdit { // NewUIListBox // this draws a nicer list box -class NewUIListBox : public UIListBox { +class NewUIListBox final : public UIListBox { UIBitmapItem m_BackNW; UIBitmapItem m_BackN; UIBitmapItem m_BackNE; @@ -475,7 +475,7 @@ class NewUIListBox : public UIListBox { // NewUIComboBox // displays a listbox just one item. -class NewUIComboBox : public UIComboBox { +class NewUIComboBox final : public UIComboBox { UIBitmapItem m_CmbLeft; UIBitmapItem m_CmbCen; UIBitmapItem m_CmbRight; @@ -493,7 +493,7 @@ class NewUIComboBox : public UIComboBox { // NewUIButton // a nicer fixed size button. -class NewUIButton : public UIButton { +class NewUIButton final : public UIButton { UIBitmapItem m_BtnUpL, m_BtnUpC, m_BtnUpR; UIBitmapItem m_BtnDownL, m_BtnDownC, m_BtnDownR; UIBitmapItem m_BtnHiliteL, m_BtnHiliteC, m_BtnHiliteR; diff --git a/Descent3/newui_core.h b/Descent3/newui_core.h index d4c3a896c..447cc21c0 100644 --- a/Descent3/newui_core.h +++ b/Descent3/newui_core.h @@ -360,7 +360,7 @@ class newuiButton : virtual public UIButton { // CLASS a large option button used in menus. -class newuiMenuOptionButton : public newuiButton { +class newuiMenuOptionButton final : public newuiButton { public: void Create(newuiMenu *menu, newuiMenuOptionButton *last, int16_t id, const char *name, int16_t x, int16_t y, bool m_mono_press); @@ -376,14 +376,14 @@ class newuiMenuOptionButton : public newuiButton { newuiMenuOptionButton *m_prev_btn, *m_next_btn; }; -class newuiTinyButton : public newuiButton { +class newuiTinyButton final : public newuiButton { public: void Create(UIWindow *wnd, int16_t id, const char *name, int16_t x, int16_t y); }; // CLASS creates an arrow button that is sensitive to touch (when down, always select) -class newuiArrowButton : public newuiButton { +class newuiArrowButton final : public newuiButton { public: newuiArrowButton(){}; @@ -405,7 +405,7 @@ class newuiArrowButton : public newuiButton { #define SUBGADGET_UP 0x3 #define SUBGADGET_DOWN 0x4 -class newuiListBox : public UIGadget { +class newuiListBox final : public UIGadget { public: newuiListBox(); @@ -475,7 +475,7 @@ class newuiListBox : public UIGadget { // CLASS newuiComboBox -class newuiComboBox : public UIGadget { +class newuiComboBox final : public UIGadget { public: newuiComboBox(); @@ -526,7 +526,7 @@ class newuiComboBox : public UIGadget { // the new classic hotspot CLASS -class newuiHotspot : public UIGadget { +class newuiHotspot final : public UIGadget { private: char *m_title; int16_t m_alpha, m_alpha_adjust; @@ -624,7 +624,7 @@ class newuiMenu : public UIWindow { // CLASS, large (fullscreen) menu -class newuiLargeMenu : public newuiMenu { +class newuiLargeMenu final : public newuiMenu { public: // creates a menu void Create(); diff --git a/Descent3/pilot.cpp b/Descent3/pilot.cpp index 94df967f0..97ec42fea 100644 --- a/Descent3/pilot.cpp +++ b/Descent3/pilot.cpp @@ -1804,7 +1804,7 @@ bool PltCopyKeyConfig(pilot *src, pilot *dest) { // UI3DWindow class // // UI class for displaying a polymodel on the UIWindow, rotating 30 deg/sec -class UI3DWindow : public UIStatic { +class UI3DWindow final : public UIStatic { public: void OnDraw(); }; @@ -1812,7 +1812,7 @@ class UI3DWindow : public UIStatic { // UIBmpWindow class // // UI class for displaying a bitmap on a UIWindow -class UIBmpWindow : public UIStatic { +class UIBmpWindow final : public UIStatic { public: UIBmpWindow(); ~UIBmpWindow(); diff --git a/Descent3/sdlmain.cpp b/Descent3/sdlmain.cpp index 3b04e6b8f..98352e5eb 100644 --- a/Descent3/sdlmain.cpp +++ b/Descent3/sdlmain.cpp @@ -127,7 +127,7 @@ void install_signal_handlers() { SetUnhandledExceptionFilter(RecordExceptionInfo // --------------------------------------------------------------------------- // Define our operating system specific extensions to the gameos system // --------------------------------------------------------------------------- -class oeD3LnxApp : public oeLnxApplication { +class oeD3LnxApp final : public oeLnxApplication { bool shutdown, final_shutdown; int old_screen_mode; @@ -142,7 +142,7 @@ class oeD3LnxApp : public oeLnxApplication { void run() { Descent3(); }; }; -class oeD3LnxDatabase : public oeLnxAppDatabase { +class oeD3LnxDatabase final : public oeLnxAppDatabase { public: oeD3LnxDatabase() { char path[_MAX_PATH]; diff --git a/cfile/inffile.h b/cfile/inffile.h index 50c9d26b0..6111290dc 100644 --- a/cfile/inffile.h +++ b/cfile/inffile.h @@ -42,10 +42,10 @@ enum InfFileError { INFFILE_SYMBOL = 1024, }; -class InfFile { +class InfFile final { public: InfFile(); - virtual ~InfFile(); + ~InfFile(); // opens an inf file, pass in a lexical analyzer that will return a command index. // tag_check is a string that must appear at the very beginning of the file. diff --git a/ddio/sdlcontroller.h b/ddio/sdlcontroller.h index 0cb39e0a6..8e6350706 100644 --- a/ddio/sdlcontroller.h +++ b/ddio/sdlcontroller.h @@ -49,7 +49,7 @@ const int CTID_KEYBOARD = -1, // always -1 for keyboards const int CTID_EXTCONTROL0 = 0; -class sdlgameController : public gameController { +class sdlgameController final : public gameController { public: sdlgameController(int num_funcs, ct_function *funcs); ~sdlgameController(); diff --git a/netgames/dmfc/dmfcinternal.h b/netgames/dmfc/dmfcinternal.h index 4ea01aabd..45a68b08c 100644 --- a/netgames/dmfc/dmfcinternal.h +++ b/netgames/dmfc/dmfcinternal.h @@ -358,7 +358,7 @@ class PInfo { int m_slot; }; -class MenuItem : public IMenuItem { +class MenuItem final : public IMenuItem { public: MenuItem(); MenuItem(const char *title, char type, uint8_t flags, void (*fp)(int), ...); // the last parameters are the state items, which @@ -455,7 +455,7 @@ struct tBanItem { }; // This class handles displaying and processing a customizable and detailed stats screen (in-game) -class CDmfcStats : public IDmfcStats { +class CDmfcStats final : public IDmfcStats { public: // constuctor/destructor CDmfcStats(); diff --git a/scripts/AIGame.cpp b/scripts/AIGame.cpp index 3d074b99f..d8410791a 100644 --- a/scripts/AIGame.cpp +++ b/scripts/AIGame.cpp @@ -361,7 +361,7 @@ struct pest_data { int foot_sounds[3]; }; -class Pest : public BaseObjScript { +class Pest final : public BaseObjScript { private: pest_data *memory; void DoInit(int me_handle); @@ -384,7 +384,7 @@ struct stinger_data { char f_very_hurt; }; -class Stinger : public BaseObjScript { +class Stinger final : public BaseObjScript { private: stinger_data *memory; @@ -443,7 +443,7 @@ struct superthief_data { bool laser_on; }; -class SuperThief : public BaseObjScript { +class SuperThief final : public BaseObjScript { private: superthief_data *memory; @@ -499,7 +499,7 @@ struct humonculous_data { int16_t flags; }; -class Humonculous : public BaseObjScript { +class Humonculous final : public BaseObjScript { private: humonculous_data *memory; @@ -529,7 +529,7 @@ struct dragon_data { int tentacle[6]; }; -class Dragon : public BaseObjScript { +class Dragon final : public BaseObjScript { private: dragon_data *memory; @@ -549,7 +549,7 @@ struct tracker_data { int hatch_object; }; -class Tracker : public BaseObjScript { +class Tracker final : public BaseObjScript { private: tracker_data *memory; @@ -571,7 +571,7 @@ struct lance_data { int mode; }; -class Lance : public BaseObjScript { +class Lance final : public BaseObjScript { private: void DoInit(int me_handle); void DoFrame(int me_handle); @@ -591,7 +591,7 @@ struct flak_data { float death_time; }; -class Flak : public BaseObjScript { +class Flak final : public BaseObjScript { private: flak_data *memory; void DoInit(int me_handle); @@ -605,7 +605,7 @@ class Flak : public BaseObjScript { // Seeker class //------------------ -class Seeker : public BaseObjScript { +class Seeker final : public BaseObjScript { private: void DoInit(int me); void DoCollide(int me); @@ -623,7 +623,7 @@ struct supertrooper_data { int body_handle; }; -class SuperTrooper : public BaseObjScript { +class SuperTrooper final : public BaseObjScript { private: supertrooper_data *memory; void DoInit(int me_handle); @@ -666,7 +666,7 @@ struct sparky_data { float spin_time; }; -class Sparky : public BaseObjScript { +class Sparky final : public BaseObjScript { private: sparky_data *memory; void DoInit(int me); @@ -726,7 +726,7 @@ struct hellion_data { int camera[2]; }; -class Hellion : public BaseObjScript { +class Hellion final : public BaseObjScript { private: hellion_data *memory; void DoInit(int me); @@ -795,7 +795,7 @@ struct mantaray_data { }; -class MantaRay : public BaseObjScript { +class MantaRay final : public BaseObjScript { private: mantaray_data *memory; void DoInit(int me); @@ -842,7 +842,7 @@ struct skiff_data { }; -class Skiff : public BaseObjScript { +class Skiff final : public BaseObjScript { private: skiff_data *memory; void DoInit(int me); @@ -892,7 +892,7 @@ struct spyhunter_data { }; -class SpyHunter : public BaseObjScript { +class SpyHunter final : public BaseObjScript { private: spyhunter_data *memory; void DoInit(int me); @@ -922,7 +922,7 @@ struct sniper_data { float base_acc; }; -class Sniper : public BaseObjScript { +class Sniper final : public BaseObjScript { sniper_data *memory; void DoInit(int me); void DoFrame(int me); @@ -950,7 +950,7 @@ struct snipernorun_data { float base_acc; }; -class SniperNoRun : public BaseObjScript { +class SniperNoRun final : public BaseObjScript { snipernorun_data *memory; void DoInit(int me); void DoFrame(int me); @@ -975,7 +975,7 @@ struct evadermoda_data { float base_acc; }; -class EvaderModA : public BaseObjScript { +class EvaderModA final : public BaseObjScript { evadermoda_data *memory; void DoInit(int me); void DoFrame(int me); @@ -1003,7 +1003,7 @@ struct flameras_data { bool f_firing_ok; }; -class FlameRAS : public BaseObjScript { +class FlameRAS final : public BaseObjScript { flameras_data *memory; void DoInit(int me); void DoFrame(int me); @@ -1041,7 +1041,7 @@ struct jugg_data { char flags; }; -class Jugg : public BaseObjScript { +class Jugg final : public BaseObjScript { private: jugg_data *memory; void DoInit(int me_handle); @@ -1067,7 +1067,7 @@ struct dtower_data { float last_frame; }; -class DTower : public BaseObjScript { +class DTower final : public BaseObjScript { private: dtower_data *memory; void DoInit(int me_handle); @@ -1090,7 +1090,7 @@ struct dcollector_data { bool f_dead; }; -class DCollector : public BaseObjScript { +class DCollector final : public BaseObjScript { private: dcollector_data *memory; void DoInit(int me_handle); @@ -1110,7 +1110,7 @@ struct cball_data { float mode_time; }; -class CBall : public BaseObjScript { +class CBall final : public BaseObjScript { private: cball_data *memory; void DoInit(int me_handle); @@ -1131,7 +1131,7 @@ struct sixgun_data { float circle_dist; }; -class SixGun : public BaseObjScript { +class SixGun final : public BaseObjScript { private: sixgun_data *memory; void DoInit(int me_handle); @@ -1150,7 +1150,7 @@ struct explodetimeout_data { float life_left; }; -class ExplodeTimeOut : public BaseObjScript { +class ExplodeTimeOut final : public BaseObjScript { private: explodetimeout_data *memory; void DoInit(int me_handle); @@ -1187,7 +1187,7 @@ struct sickle_data { }; -class Sickle : public BaseObjScript { +class Sickle final : public BaseObjScript { private: sickle_data *memory; void SetMode(int me, char mode); @@ -1208,7 +1208,7 @@ struct tBettyBombInfo { bool explode; }; -class BettyBomb : public BaseObjScript { +class BettyBomb final : public BaseObjScript { public: BettyBomb() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -1222,7 +1222,7 @@ struct tBettyInfo { float lasttime; }; -class BettyScript : public BaseObjScript { +class BettyScript final : public BaseObjScript { public: BettyScript() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -1242,7 +1242,7 @@ struct tChaffInfo { bool killme; }; -class ChaffScript : public BaseObjScript { +class ChaffScript final : public BaseObjScript { public: ChaffScript() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -1260,7 +1260,7 @@ struct tChaffChunkInfo { float lifeleft; }; -class ChaffChunkScript : public BaseObjScript { +class ChaffChunkScript final : public BaseObjScript { public: ChaffChunkScript() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -1278,7 +1278,7 @@ class ChaffChunkScript : public BaseObjScript { // ProxMine class //------------------ -class ProxMine : public BaseObjScript { +class ProxMine final : public BaseObjScript { private: void DoInit(int me); void DoCollide(int me); @@ -1292,7 +1292,7 @@ class ProxMine : public BaseObjScript { // Gunboy class //------------------ -class Gunboy : public BaseObjScript { +class Gunboy final : public BaseObjScript { public: Gunboy() {} int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -1308,7 +1308,7 @@ struct gbpowerup_data { float time_till_next_hud_message; }; -class GBPowerup : public BaseObjScript { +class GBPowerup final : public BaseObjScript { private: gbpowerup_data *memory; void DoInit(int me); @@ -1330,7 +1330,7 @@ struct joshbell_data { int bell_sound; }; -class JoshBell : public BaseObjScript { +class JoshBell final : public BaseObjScript { private: joshbell_data *memory; void DoInit(int me); @@ -1345,7 +1345,7 @@ class JoshBell : public BaseObjScript { // Explode On Contact //----------------- -class ExplodeOnContact : public BaseObjScript { +class ExplodeOnContact final : public BaseObjScript { private: void DoCollide(int me, int it_handle); @@ -1358,7 +1358,7 @@ class ExplodeOnContact : public BaseObjScript { // Destroy On Contact //----------------- -class DestroyOnContact : public BaseObjScript { +class DestroyOnContact final : public BaseObjScript { private: void DoCollide(int me, int it_handle); @@ -1570,7 +1570,7 @@ struct guidebot_data { uint16_t powerup_ids[6]; }; -class GuideBot : public BaseObjScript { +class GuideBot final : public BaseObjScript { private: guidebot_data *memory; void DoMessage(const char *str, bool f_high_priority, const char *sound_name = NULL, bool f_sound_2d = false); @@ -1705,7 +1705,7 @@ struct thief_data { float aggression; }; -class Thief : public BaseObjScript { +class Thief final : public BaseObjScript { private: thief_data *memory; void DoMessage(const char *str); @@ -2299,7 +2299,7 @@ struct fireatdist_data { bool last_f_fire; }; -class FireAtDist : public BaseObjScript { +class FireAtDist final : public BaseObjScript { private: fireatdist_data *memory; void DoInit(int me_handle); @@ -2319,7 +2319,7 @@ struct hateptmc_data { float time_till_pulse; }; -class HatePTMC : public BaseObjScript { +class HatePTMC final : public BaseObjScript { private: hateptmc_data *memory; void DoInit(int me_handle); @@ -2342,7 +2342,7 @@ struct tubbs_data { float full_anger_time; }; -class Tubbs : public BaseObjScript { +class Tubbs final : public BaseObjScript { private: tubbs_data *memory; void DoInit(int me); @@ -2366,7 +2366,7 @@ struct oldscratch_data { float full_anger_time; }; -class OldScratch : public BaseObjScript { +class OldScratch final : public BaseObjScript { private: oldscratch_data *memory; bool DoSteal(int me, int it); @@ -2427,7 +2427,7 @@ struct barnswallow_data { int flags; }; -class BarnSwallow : public BaseObjScript { +class BarnSwallow final : public BaseObjScript { private: barnswallow_data *memory; void DoInit(int me); diff --git a/scripts/AIGame3.cpp b/scripts/AIGame3.cpp index 90879bc57..a50331a00 100644 --- a/scripts/AIGame3.cpp +++ b/scripts/AIGame3.cpp @@ -803,7 +803,7 @@ struct alienorganism_data { }; // Alien Organism class definition -class AlienOrganism : public BaseObjScript { +class AlienOrganism final : public BaseObjScript { private: alienorganism_data *memory; @@ -983,7 +983,7 @@ struct heavytrooper_data { }; // Heavy Trooper class definition -class HeavyTrooper : public BaseObjScript { +class HeavyTrooper final : public BaseObjScript { private: heavytrooper_data *memory; @@ -1078,7 +1078,7 @@ struct lifter_data { }; // Lifter class definition -class Lifter : public BaseObjScript { +class Lifter final : public BaseObjScript { private: lifter_data *memory; @@ -1292,7 +1292,7 @@ struct alienboss_data { }; // Alien Boss class definition -class AlienBoss : public BaseObjScript { +class AlienBoss final : public BaseObjScript { private: alienboss_data *memory; @@ -1383,7 +1383,7 @@ struct securitycamera_data { }; // Security Camera class definition -class SecurityCamera : public BaseObjScript { +class SecurityCamera final : public BaseObjScript { private: securitycamera_data *memory; @@ -1427,7 +1427,7 @@ struct crowdcontrol_data { }; // Security Camera class definition -class CrowdControl : public BaseObjScript { +class CrowdControl final : public BaseObjScript { private: crowdcontrol_data *memory; diff --git a/scripts/BatteriesIncluded.cpp b/scripts/BatteriesIncluded.cpp index b7ee1450d..be658f4a5 100644 --- a/scripts/BatteriesIncluded.cpp +++ b/scripts/BatteriesIncluded.cpp @@ -102,192 +102,192 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/BossCamera.cpp b/scripts/BossCamera.cpp index 0419e9698..45527d998 100644 --- a/scripts/BossCamera.cpp +++ b/scripts/BossCamera.cpp @@ -66,12 +66,12 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/CanyonsCTF.cpp b/scripts/CanyonsCTF.cpp index c74df9fc7..992190f26 100644 --- a/scripts/CanyonsCTF.cpp +++ b/scripts/CanyonsCTF.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/CellTestLevel.cpp b/scripts/CellTestLevel.cpp index 6361b312f..615f14789 100644 --- a/scripts/CellTestLevel.cpp +++ b/scripts/CellTestLevel.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/ChrisTest.cpp b/scripts/ChrisTest.cpp index b7460ad37..0eeffe06e 100644 --- a/scripts/ChrisTest.cpp +++ b/scripts/ChrisTest.cpp @@ -66,12 +66,12 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1004 : public BaseScript { +class CustomObjectScript_1004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Geodomes.cpp b/scripts/Geodomes.cpp index 16419adc8..b591c6afa 100644 --- a/scripts/Geodomes.cpp +++ b/scripts/Geodomes.cpp @@ -69,27 +69,27 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1081 : public BaseScript { +class CustomObjectScript_1081 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1080 : public BaseScript { +class CustomObjectScript_1080 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_107A : public BaseScript { +class CustomObjectScript_107A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_107B : public BaseScript { +class CustomObjectScript_107B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/HalfPipe.cpp b/scripts/HalfPipe.cpp index 741b1965a..18a66e64b 100644 --- a/scripts/HalfPipe.cpp +++ b/scripts/HalfPipe.cpp @@ -69,27 +69,27 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/InfernalBolt.cpp b/scripts/InfernalBolt.cpp index 79cdd7d15..1ef6c116e 100644 --- a/scripts/InfernalBolt.cpp +++ b/scripts/InfernalBolt.cpp @@ -67,17 +67,17 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0803 : public BaseScript { +class CustomObjectScript_0803 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_101E : public BaseScript { +class CustomObjectScript_101E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Inversion.cpp b/scripts/Inversion.cpp index aac32243c..2a3399b2c 100644 --- a/scripts/Inversion.cpp +++ b/scripts/Inversion.cpp @@ -86,107 +86,107 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0810 : public BaseScript { +class CustomObjectScript_0810 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0811 : public BaseScript { +class CustomObjectScript_0811 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0812 : public BaseScript { +class CustomObjectScript_0812 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0813 : public BaseScript { +class CustomObjectScript_0813 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0876 : public BaseScript { +class CustomObjectScript_0876 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0875 : public BaseScript { +class CustomObjectScript_0875 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0859 : public BaseScript { +class CustomObjectScript_0859 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085A : public BaseScript { +class CustomObjectScript_085A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/LEVEL0.cpp b/scripts/LEVEL0.cpp index e94f175c4..8ee884590 100644 --- a/scripts/LEVEL0.cpp +++ b/scripts/LEVEL0.cpp @@ -88,117 +88,117 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3855 : public BaseScript { +class CustomObjectScript_3855 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DC : public BaseScript { +class CustomObjectScript_10DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E0 : public BaseScript { +class CustomObjectScript_10E0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DF : public BaseScript { +class CustomObjectScript_10DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E8 : public BaseScript { +class CustomObjectScript_08E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_584D : public BaseScript { +class CustomObjectScript_584D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0816 : public BaseScript { +class CustomObjectScript_0816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_301B : public BaseScript { +class CustomObjectScript_301B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18DB : public BaseScript { +class CustomObjectScript_18DB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/LEVEL15.cpp b/scripts/LEVEL15.cpp index 8214dae50..3118c529c 100644 --- a/scripts/LEVEL15.cpp +++ b/scripts/LEVEL15.cpp @@ -122,287 +122,287 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FD : public BaseScript { +class CustomObjectScript_10FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084D : public BaseScript { +class CustomObjectScript_084D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084E : public BaseScript { +class CustomObjectScript_084E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084F : public BaseScript { +class CustomObjectScript_084F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084C : public BaseScript { +class CustomObjectScript_084C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1913 : public BaseScript { +class CustomObjectScript_1913 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0851 : public BaseScript { +class CustomObjectScript_0851 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0850 : public BaseScript { +class CustomObjectScript_0850 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0852 : public BaseScript { +class CustomObjectScript_0852 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0858 : public BaseScript { +class CustomObjectScript_0858 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0857 : public BaseScript { +class CustomObjectScript_0857 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0856 : public BaseScript { +class CustomObjectScript_0856 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0855 : public BaseScript { +class CustomObjectScript_0855 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_399D : public BaseScript { +class CustomObjectScript_399D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_210D : public BaseScript { +class CustomObjectScript_210D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_210E : public BaseScript { +class CustomObjectScript_210E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_190F : public BaseScript { +class CustomObjectScript_190F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2801 : public BaseScript { +class CustomObjectScript_2801 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1828 : public BaseScript { +class CustomObjectScript_1828 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1015 : public BaseScript { +class CustomObjectScript_1015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0848 : public BaseScript { +class CustomObjectScript_0848 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0849 : public BaseScript { +class CustomObjectScript_0849 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0847 : public BaseScript { +class CustomObjectScript_0847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3831 : public BaseScript { +class CustomObjectScript_3831 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2111 : public BaseScript { +class CustomObjectScript_2111 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0AB1 : public BaseScript { +class CustomObjectScript_0AB1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Level12.cpp b/scripts/Level12.cpp index b3b889c5a..654b6df01 100644 --- a/scripts/Level12.cpp +++ b/scripts/Level12.cpp @@ -179,572 +179,572 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DF : public BaseScript { +class CustomObjectScript_09DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DD : public BaseScript { +class CustomObjectScript_09DD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DC : public BaseScript { +class CustomObjectScript_09DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DE : public BaseScript { +class CustomObjectScript_09DE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DB : public BaseScript { +class CustomObjectScript_09DB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1090 : public BaseScript { +class CustomObjectScript_1090 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1173 : public BaseScript { +class CustomObjectScript_1173 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087C : public BaseScript { +class CustomObjectScript_087C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087B : public BaseScript { +class CustomObjectScript_087B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087A : public BaseScript { +class CustomObjectScript_087A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0879 : public BaseScript { +class CustomObjectScript_0879 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0878 : public BaseScript { +class CustomObjectScript_0878 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_204D : public BaseScript { +class CustomObjectScript_204D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0880 : public BaseScript { +class CustomObjectScript_0880 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1077 : public BaseScript { +class CustomObjectScript_1077 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1871 : public BaseScript { +class CustomObjectScript_1871 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08AF : public BaseScript { +class CustomObjectScript_08AF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B0 : public BaseScript { +class CustomObjectScript_08B0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B1 : public BaseScript { +class CustomObjectScript_08B1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_107D : public BaseScript { +class CustomObjectScript_107D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_117F : public BaseScript { +class CustomObjectScript_117F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1180 : public BaseScript { +class CustomObjectScript_1180 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1168 : public BaseScript { +class CustomObjectScript_1168 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1081 : public BaseScript { +class CustomObjectScript_1081 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B5 : public BaseScript { +class CustomObjectScript_08B5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FD : public BaseScript { +class CustomObjectScript_08FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0949 : public BaseScript { +class CustomObjectScript_0949 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0846 : public BaseScript { +class CustomObjectScript_0846 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0954 : public BaseScript { +class CustomObjectScript_0954 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0955 : public BaseScript { +class CustomObjectScript_0955 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0956 : public BaseScript { +class CustomObjectScript_0956 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0957 : public BaseScript { +class CustomObjectScript_0957 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08C2 : public BaseScript { +class CustomObjectScript_08C2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18C3 : public BaseScript { +class CustomObjectScript_18C3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0952 : public BaseScript { +class CustomObjectScript_0952 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0953 : public BaseScript { +class CustomObjectScript_0953 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0950 : public BaseScript { +class CustomObjectScript_0950 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0951 : public BaseScript { +class CustomObjectScript_0951 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_104E : public BaseScript { +class CustomObjectScript_104E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1969 : public BaseScript { +class CustomObjectScript_1969 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_216B : public BaseScript { +class CustomObjectScript_216B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096C : public BaseScript { +class CustomObjectScript_096C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096E : public BaseScript { +class CustomObjectScript_096E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096D : public BaseScript { +class CustomObjectScript_096D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0977 : public BaseScript { +class CustomObjectScript_0977 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E2 : public BaseScript { +class CustomObjectScript_08E2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097C : public BaseScript { +class CustomObjectScript_097C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097B : public BaseScript { +class CustomObjectScript_097B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097A : public BaseScript { +class CustomObjectScript_097A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E9 : public BaseScript { +class CustomObjectScript_08E9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E8 : public BaseScript { +class CustomObjectScript_08E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_105A : public BaseScript { +class CustomObjectScript_105A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097D : public BaseScript { +class CustomObjectScript_097D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1801 : public BaseScript { +class CustomObjectScript_1801 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_103C : public BaseScript { +class CustomObjectScript_103C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0984 : public BaseScript { +class CustomObjectScript_0984 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_098C : public BaseScript { +class CustomObjectScript_098C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0992 : public BaseScript { +class CustomObjectScript_0992 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20BC : public BaseScript { +class CustomObjectScript_20BC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C6 : public BaseScript { +class CustomObjectScript_09C6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C7 : public BaseScript { +class CustomObjectScript_09C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C8 : public BaseScript { +class CustomObjectScript_09C8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C5 : public BaseScript { +class CustomObjectScript_11C5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C4 : public BaseScript { +class CustomObjectScript_11C4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21BC : public BaseScript { +class CustomObjectScript_21BC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11B5 : public BaseScript { +class CustomObjectScript_11B5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2886 : public BaseScript { +class CustomObjectScript_2886 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11B4 : public BaseScript { +class CustomObjectScript_11B4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1885 : public BaseScript { +class CustomObjectScript_1885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28BB : public BaseScript { +class CustomObjectScript_28BB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_186E : public BaseScript { +class CustomObjectScript_186E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18F0 : public BaseScript { +class CustomObjectScript_18F0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19BE : public BaseScript { +class CustomObjectScript_19BE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18F1 : public BaseScript { +class CustomObjectScript_18F1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19C0 : public BaseScript { +class CustomObjectScript_19C0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18EE : public BaseScript { +class CustomObjectScript_18EE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20CD : public BaseScript { +class CustomObjectScript_20CD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28CC : public BaseScript { +class CustomObjectScript_28CC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10B2 : public BaseScript { +class CustomObjectScript_10B2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18C1 : public BaseScript { +class CustomObjectScript_18C1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21B8 : public BaseScript { +class CustomObjectScript_21B8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21B9 : public BaseScript { +class CustomObjectScript_21B9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080A : public BaseScript { +class CustomObjectScript_080A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080C : public BaseScript { +class CustomObjectScript_080C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0811 : public BaseScript { +class CustomObjectScript_0811 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Level16.cpp b/scripts/Level16.cpp index b77adf3c2..1dec8b8e0 100644 --- a/scripts/Level16.cpp +++ b/scripts/Level16.cpp @@ -72,37 +72,37 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4010 : public BaseScript { +class CustomObjectScript_4010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0804 : public BaseScript { +class CustomObjectScript_0804 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Level6.cpp b/scripts/Level6.cpp index 69fd719e2..ddcc986e5 100644 --- a/scripts/Level6.cpp +++ b/scripts/Level6.cpp @@ -122,287 +122,287 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_208F : public BaseScript { +class CustomObjectScript_208F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20BE : public BaseScript { +class CustomObjectScript_20BE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_206F : public BaseScript { +class CustomObjectScript_206F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10A5 : public BaseScript { +class CustomObjectScript_10A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081D : public BaseScript { +class CustomObjectScript_081D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081E : public BaseScript { +class CustomObjectScript_081E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08F7 : public BaseScript { +class CustomObjectScript_08F7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081C : public BaseScript { +class CustomObjectScript_081C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081B : public BaseScript { +class CustomObjectScript_081B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10C7 : public BaseScript { +class CustomObjectScript_10C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18B9 : public BaseScript { +class CustomObjectScript_18B9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2051 : public BaseScript { +class CustomObjectScript_2051 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1826 : public BaseScript { +class CustomObjectScript_1826 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FD : public BaseScript { +class CustomObjectScript_08FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_180A : public BaseScript { +class CustomObjectScript_180A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_216E : public BaseScript { +class CustomObjectScript_216E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3167 : public BaseScript { +class CustomObjectScript_3167 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1964 : public BaseScript { +class CustomObjectScript_1964 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_316A : public BaseScript { +class CustomObjectScript_316A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_216B : public BaseScript { +class CustomObjectScript_216B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Level9.cpp b/scripts/Level9.cpp index 8bcf6621f..993b3d1f6 100644 --- a/scripts/Level9.cpp +++ b/scripts/Level9.cpp @@ -110,227 +110,227 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081B : public BaseScript { +class CustomObjectScript_081B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18D5 : public BaseScript { +class CustomObjectScript_18D5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18D6 : public BaseScript { +class CustomObjectScript_18D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1030 : public BaseScript { +class CustomObjectScript_1030 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1038 : public BaseScript { +class CustomObjectScript_1038 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0869 : public BaseScript { +class CustomObjectScript_0869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_086A : public BaseScript { +class CustomObjectScript_086A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_106E : public BaseScript { +class CustomObjectScript_106E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_106F : public BaseScript { +class CustomObjectScript_106F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_106D : public BaseScript { +class CustomObjectScript_106D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_106C : public BaseScript { +class CustomObjectScript_106C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100F : public BaseScript { +class CustomObjectScript_100F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0871 : public BaseScript { +class CustomObjectScript_0871 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0811 : public BaseScript { +class CustomObjectScript_0811 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0810 : public BaseScript { +class CustomObjectScript_0810 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080E : public BaseScript { +class CustomObjectScript_080E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0873 : public BaseScript { +class CustomObjectScript_0873 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0872 : public BaseScript { +class CustomObjectScript_0872 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2070 : public BaseScript { +class CustomObjectScript_2070 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18AA : public BaseScript { +class CustomObjectScript_18AA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18C1 : public BaseScript { +class CustomObjectScript_18C1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0948 : public BaseScript { +class CustomObjectScript_0948 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0949 : public BaseScript { +class CustomObjectScript_0949 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18AC : public BaseScript { +class CustomObjectScript_18AC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_094E : public BaseScript { +class CustomObjectScript_094E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/LevelS1.cpp b/scripts/LevelS1.cpp index 4fc227389..a4fc2672c 100644 --- a/scripts/LevelS1.cpp +++ b/scripts/LevelS1.cpp @@ -73,42 +73,42 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0804 : public BaseScript { +class CustomObjectScript_0804 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc02.cpp b/scripts/Merc02.cpp index 0ef3758f5..c5691a18c 100644 --- a/scripts/Merc02.cpp +++ b/scripts/Merc02.cpp @@ -128,317 +128,317 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1119 : public BaseScript { +class CustomObjectScript_1119 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10EC : public BaseScript { +class CustomObjectScript_10EC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08F6 : public BaseScript { +class CustomObjectScript_08F6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08F8 : public BaseScript { +class CustomObjectScript_08F8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08F7 : public BaseScript { +class CustomObjectScript_08F7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FB : public BaseScript { +class CustomObjectScript_08FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FC : public BaseScript { +class CustomObjectScript_08FC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FE : public BaseScript { +class CustomObjectScript_08FE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FD : public BaseScript { +class CustomObjectScript_08FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FF : public BaseScript { +class CustomObjectScript_08FF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0900 : public BaseScript { +class CustomObjectScript_0900 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0901 : public BaseScript { +class CustomObjectScript_0901 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0902 : public BaseScript { +class CustomObjectScript_0902 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1017 : public BaseScript { +class CustomObjectScript_1017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0818 : public BaseScript { +class CustomObjectScript_0818 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1019 : public BaseScript { +class CustomObjectScript_1019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10CF : public BaseScript { +class CustomObjectScript_10CF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_30B2 : public BaseScript { +class CustomObjectScript_30B2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10B1 : public BaseScript { +class CustomObjectScript_10B1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1040 : public BaseScript { +class CustomObjectScript_1040 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1041 : public BaseScript { +class CustomObjectScript_1041 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_103F : public BaseScript { +class CustomObjectScript_103F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08DE : public BaseScript { +class CustomObjectScript_08DE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_110E : public BaseScript { +class CustomObjectScript_110E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10CD : public BaseScript { +class CustomObjectScript_10CD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A6 : public BaseScript { +class CustomObjectScript_08A6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A5 : public BaseScript { +class CustomObjectScript_08A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1112 : public BaseScript { +class CustomObjectScript_1112 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0913 : public BaseScript { +class CustomObjectScript_0913 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084A : public BaseScript { +class CustomObjectScript_084A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1048 : public BaseScript { +class CustomObjectScript_1048 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1111 : public BaseScript { +class CustomObjectScript_1111 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1067 : public BaseScript { +class CustomObjectScript_1067 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088C : public BaseScript { +class CustomObjectScript_088C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_108B : public BaseScript { +class CustomObjectScript_108B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0883 : public BaseScript { +class CustomObjectScript_0883 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1884 : public BaseScript { +class CustomObjectScript_1884 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_106F : public BaseScript { +class CustomObjectScript_106F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1071 : public BaseScript { +class CustomObjectScript_1071 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0894 : public BaseScript { +class CustomObjectScript_0894 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0893 : public BaseScript { +class CustomObjectScript_0893 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0806 : public BaseScript { +class CustomObjectScript_0806 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1842 : public BaseScript { +class CustomObjectScript_1842 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_082F : public BaseScript { +class CustomObjectScript_082F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc1.cpp b/scripts/Merc1.cpp index a9afb13cf..6900399c4 100644 --- a/scripts/Merc1.cpp +++ b/scripts/Merc1.cpp @@ -178,567 +178,567 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2027 : public BaseScript { +class CustomObjectScript_2027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0820 : public BaseScript { +class CustomObjectScript_0820 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0831 : public BaseScript { +class CustomObjectScript_0831 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0832 : public BaseScript { +class CustomObjectScript_0832 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0836 : public BaseScript { +class CustomObjectScript_0836 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0888 : public BaseScript { +class CustomObjectScript_0888 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0887 : public BaseScript { +class CustomObjectScript_0887 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0886 : public BaseScript { +class CustomObjectScript_0886 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_182A : public BaseScript { +class CustomObjectScript_182A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088A : public BaseScript { +class CustomObjectScript_088A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0889 : public BaseScript { +class CustomObjectScript_0889 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_188C : public BaseScript { +class CustomObjectScript_188C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0885 : public BaseScript { +class CustomObjectScript_0885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096D : public BaseScript { +class CustomObjectScript_096D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0877 : public BaseScript { +class CustomObjectScript_0877 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0878 : public BaseScript { +class CustomObjectScript_0878 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0879 : public BaseScript { +class CustomObjectScript_0879 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1171 : public BaseScript { +class CustomObjectScript_1171 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087A : public BaseScript { +class CustomObjectScript_087A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087B : public BaseScript { +class CustomObjectScript_087B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087C : public BaseScript { +class CustomObjectScript_087C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087D : public BaseScript { +class CustomObjectScript_087D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1170 : public BaseScript { +class CustomObjectScript_1170 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0988 : public BaseScript { +class CustomObjectScript_0988 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0981 : public BaseScript { +class CustomObjectScript_0981 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0980 : public BaseScript { +class CustomObjectScript_0980 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097F : public BaseScript { +class CustomObjectScript_097F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097E : public BaseScript { +class CustomObjectScript_097E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097D : public BaseScript { +class CustomObjectScript_097D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097C : public BaseScript { +class CustomObjectScript_097C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_117B : public BaseScript { +class CustomObjectScript_117B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097A : public BaseScript { +class CustomObjectScript_097A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1984 : public BaseScript { +class CustomObjectScript_1984 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0875 : public BaseScript { +class CustomObjectScript_0875 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0865 : public BaseScript { +class CustomObjectScript_0865 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0864 : public BaseScript { +class CustomObjectScript_0864 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0863 : public BaseScript { +class CustomObjectScript_0863 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0862 : public BaseScript { +class CustomObjectScript_0862 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A1 : public BaseScript { +class CustomObjectScript_08A1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A0 : public BaseScript { +class CustomObjectScript_08A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_089F : public BaseScript { +class CustomObjectScript_089F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_109E : public BaseScript { +class CustomObjectScript_109E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_109C : public BaseScript { +class CustomObjectScript_109C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08AE : public BaseScript { +class CustomObjectScript_08AE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A6 : public BaseScript { +class CustomObjectScript_18A6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A5 : public BaseScript { +class CustomObjectScript_18A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A4 : public BaseScript { +class CustomObjectScript_18A4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A7 : public BaseScript { +class CustomObjectScript_18A7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A9 : public BaseScript { +class CustomObjectScript_18A9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20A3 : public BaseScript { +class CustomObjectScript_20A3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28A2 : public BaseScript { +class CustomObjectScript_28A2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A8 : public BaseScript { +class CustomObjectScript_18A8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08DA : public BaseScript { +class CustomObjectScript_08DA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D9 : public BaseScript { +class CustomObjectScript_08D9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D8 : public BaseScript { +class CustomObjectScript_08D8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D7 : public BaseScript { +class CustomObjectScript_08D7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D6 : public BaseScript { +class CustomObjectScript_08D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D5 : public BaseScript { +class CustomObjectScript_08D5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D4 : public BaseScript { +class CustomObjectScript_08D4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D3 : public BaseScript { +class CustomObjectScript_08D3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D2 : public BaseScript { +class CustomObjectScript_08D2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D1 : public BaseScript { +class CustomObjectScript_08D1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D0 : public BaseScript { +class CustomObjectScript_08D0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08CF : public BaseScript { +class CustomObjectScript_08CF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_105C : public BaseScript { +class CustomObjectScript_105C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2059 : public BaseScript { +class CustomObjectScript_2059 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0858 : public BaseScript { +class CustomObjectScript_0858 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0857 : public BaseScript { +class CustomObjectScript_0857 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1030 : public BaseScript { +class CustomObjectScript_1030 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_402F : public BaseScript { +class CustomObjectScript_402F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1871 : public BaseScript { +class CustomObjectScript_1871 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_091A : public BaseScript { +class CustomObjectScript_091A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0919 : public BaseScript { +class CustomObjectScript_0919 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0918 : public BaseScript { +class CustomObjectScript_0918 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0917 : public BaseScript { +class CustomObjectScript_0917 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0925 : public BaseScript { +class CustomObjectScript_0925 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0924 : public BaseScript { +class CustomObjectScript_0924 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0923 : public BaseScript { +class CustomObjectScript_0923 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0922 : public BaseScript { +class CustomObjectScript_0922 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0921 : public BaseScript { +class CustomObjectScript_0921 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1120 : public BaseScript { +class CustomObjectScript_1120 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_111F : public BaseScript { +class CustomObjectScript_111F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_111E : public BaseScript { +class CustomObjectScript_111E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_112E : public BaseScript { +class CustomObjectScript_112E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0932 : public BaseScript { +class CustomObjectScript_0932 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0931 : public BaseScript { +class CustomObjectScript_0931 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080F : public BaseScript { +class CustomObjectScript_080F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0967 : public BaseScript { +class CustomObjectScript_0967 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0966 : public BaseScript { +class CustomObjectScript_0966 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0809 : public BaseScript { +class CustomObjectScript_0809 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc3.cpp b/scripts/Merc3.cpp index df86801c9..e7f525db1 100644 --- a/scripts/Merc3.cpp +++ b/scripts/Merc3.cpp @@ -180,572 +180,572 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B83 : public BaseScript { +class CustomObjectScript_0B83 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B85 : public BaseScript { +class CustomObjectScript_0B85 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1140 : public BaseScript { +class CustomObjectScript_1140 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1941 : public BaseScript { +class CustomObjectScript_1941 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0943 : public BaseScript { +class CustomObjectScript_0943 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0942 : public BaseScript { +class CustomObjectScript_0942 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0950 : public BaseScript { +class CustomObjectScript_0950 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0951 : public BaseScript { +class CustomObjectScript_0951 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_093A : public BaseScript { +class CustomObjectScript_093A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_193D : public BaseScript { +class CustomObjectScript_193D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_093B : public BaseScript { +class CustomObjectScript_093B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_192E : public BaseScript { +class CustomObjectScript_192E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_093C : public BaseScript { +class CustomObjectScript_093C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1318 : public BaseScript { +class CustomObjectScript_1318 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1317 : public BaseScript { +class CustomObjectScript_1317 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_190B : public BaseScript { +class CustomObjectScript_190B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_6909 : public BaseScript { +class CustomObjectScript_6909 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_191C : public BaseScript { +class CustomObjectScript_191C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_111D : public BaseScript { +class CustomObjectScript_111D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_110F : public BaseScript { +class CustomObjectScript_110F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1194 : public BaseScript { +class CustomObjectScript_1194 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11FA : public BaseScript { +class CustomObjectScript_11FA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0CB4 : public BaseScript { +class CustomObjectScript_0CB4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20B0 : public BaseScript { +class CustomObjectScript_20B0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_136F : public BaseScript { +class CustomObjectScript_136F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3090 : public BaseScript { +class CustomObjectScript_3090 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_30AE : public BaseScript { +class CustomObjectScript_30AE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_50FF : public BaseScript { +class CustomObjectScript_50FF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0987 : public BaseScript { +class CustomObjectScript_0987 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0989 : public BaseScript { +class CustomObjectScript_0989 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FA : public BaseScript { +class CustomObjectScript_10FA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18FB : public BaseScript { +class CustomObjectScript_18FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FC : public BaseScript { +class CustomObjectScript_10FC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F9 : public BaseScript { +class CustomObjectScript_10F9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F8 : public BaseScript { +class CustomObjectScript_10F8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_D08A : public BaseScript { +class CustomObjectScript_D08A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2888 : public BaseScript { +class CustomObjectScript_2888 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FD : public BaseScript { +class CustomObjectScript_09FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_48C5 : public BaseScript { +class CustomObjectScript_48C5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FC : public BaseScript { +class CustomObjectScript_09FC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D6 : public BaseScript { +class CustomObjectScript_08D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FB : public BaseScript { +class CustomObjectScript_09FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08DF : public BaseScript { +class CustomObjectScript_08DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_105C : public BaseScript { +class CustomObjectScript_105C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E8 : public BaseScript { +class CustomObjectScript_08E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_60EB : public BaseScript { +class CustomObjectScript_60EB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28EC : public BaseScript { +class CustomObjectScript_28EC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_118B : public BaseScript { +class CustomObjectScript_118B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_118D : public BaseScript { +class CustomObjectScript_118D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_118C : public BaseScript { +class CustomObjectScript_118C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_098E : public BaseScript { +class CustomObjectScript_098E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11F7 : public BaseScript { +class CustomObjectScript_11F7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0983 : public BaseScript { +class CustomObjectScript_0983 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1BB9 : public BaseScript { +class CustomObjectScript_1BB9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_13AD : public BaseScript { +class CustomObjectScript_13AD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_13AC : public BaseScript { +class CustomObjectScript_13AC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_13AB : public BaseScript { +class CustomObjectScript_13AB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_13AA : public BaseScript { +class CustomObjectScript_13AA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A2E : public BaseScript { +class CustomObjectScript_0A2E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A30 : public BaseScript { +class CustomObjectScript_0A30 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A33 : public BaseScript { +class CustomObjectScript_0A33 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0982 : public BaseScript { +class CustomObjectScript_0982 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_12DF : public BaseScript { +class CustomObjectScript_12DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_12E1 : public BaseScript { +class CustomObjectScript_12E1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_12DE : public BaseScript { +class CustomObjectScript_12DE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1289 : public BaseScript { +class CustomObjectScript_1289 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1290 : public BaseScript { +class CustomObjectScript_1290 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_128E : public BaseScript { +class CustomObjectScript_128E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_128C : public BaseScript { +class CustomObjectScript_128C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_128A : public BaseScript { +class CustomObjectScript_128A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A0 : public BaseScript { +class CustomObjectScript_18A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B86 : public BaseScript { +class CustomObjectScript_0B86 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B80 : public BaseScript { +class CustomObjectScript_0B80 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B82 : public BaseScript { +class CustomObjectScript_0B82 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_109F : public BaseScript { +class CustomObjectScript_109F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1153 : public BaseScript { +class CustomObjectScript_1153 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_115E : public BaseScript { +class CustomObjectScript_115E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095F : public BaseScript { +class CustomObjectScript_095F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0960 : public BaseScript { +class CustomObjectScript_0960 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0961 : public BaseScript { +class CustomObjectScript_0961 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc4.cpp b/scripts/Merc4.cpp index 27a76d898..4e7ac6ece 100644 --- a/scripts/Merc4.cpp +++ b/scripts/Merc4.cpp @@ -103,192 +103,192 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0811 : public BaseScript { +class CustomObjectScript_0811 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0804 : public BaseScript { +class CustomObjectScript_0804 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0803 : public BaseScript { +class CustomObjectScript_0803 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3198 : public BaseScript { +class CustomObjectScript_3198 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_099A : public BaseScript { +class CustomObjectScript_099A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_099E : public BaseScript { +class CustomObjectScript_099E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A0 : public BaseScript { +class CustomObjectScript_09A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080A : public BaseScript { +class CustomObjectScript_080A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09AC : public BaseScript { +class CustomObjectScript_09AC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1138 : public BaseScript { +class CustomObjectScript_1138 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11B2 : public BaseScript { +class CustomObjectScript_11B2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_31B7 : public BaseScript { +class CustomObjectScript_31B7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11D1 : public BaseScript { +class CustomObjectScript_11D1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09D2 : public BaseScript { +class CustomObjectScript_09D2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc6.cpp b/scripts/Merc6.cpp index 4401fc9ac..d0ee6ac60 100644 --- a/scripts/Merc6.cpp +++ b/scripts/Merc6.cpp @@ -114,247 +114,247 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1006 : public BaseScript { +class CustomObjectScript_1006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0841 : public BaseScript { +class CustomObjectScript_0841 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0840 : public BaseScript { +class CustomObjectScript_0840 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0864 : public BaseScript { +class CustomObjectScript_0864 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_186D : public BaseScript { +class CustomObjectScript_186D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20A3 : public BaseScript { +class CustomObjectScript_20A3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A5 : public BaseScript { +class CustomObjectScript_08A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A6 : public BaseScript { +class CustomObjectScript_08A6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A7 : public BaseScript { +class CustomObjectScript_08A7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_403E : public BaseScript { +class CustomObjectScript_403E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_783F : public BaseScript { +class CustomObjectScript_783F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1084 : public BaseScript { +class CustomObjectScript_1084 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0885 : public BaseScript { +class CustomObjectScript_0885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1086 : public BaseScript { +class CustomObjectScript_1086 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2046 : public BaseScript { +class CustomObjectScript_2046 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A8 : public BaseScript { +class CustomObjectScript_08A8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A9 : public BaseScript { +class CustomObjectScript_08A9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B9 : public BaseScript { +class CustomObjectScript_08B9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_5847 : public BaseScript { +class CustomObjectScript_5847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1048 : public BaseScript { +class CustomObjectScript_1048 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_104A : public BaseScript { +class CustomObjectScript_104A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_108E : public BaseScript { +class CustomObjectScript_108E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1827 : public BaseScript { +class CustomObjectScript_1827 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Merc7.cpp b/scripts/Merc7.cpp index 0d3c3a570..96c175524 100644 --- a/scripts/Merc7.cpp +++ b/scripts/Merc7.cpp @@ -149,422 +149,422 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0885 : public BaseScript { +class CustomObjectScript_0885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0884 : public BaseScript { +class CustomObjectScript_0884 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0903 : public BaseScript { +class CustomObjectScript_0903 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0902 : public BaseScript { +class CustomObjectScript_0902 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0901 : public BaseScript { +class CustomObjectScript_0901 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1025 : public BaseScript { +class CustomObjectScript_1025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_103B : public BaseScript { +class CustomObjectScript_103B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1038 : public BaseScript { +class CustomObjectScript_1038 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2022 : public BaseScript { +class CustomObjectScript_2022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10AF : public BaseScript { +class CustomObjectScript_10AF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20AA : public BaseScript { +class CustomObjectScript_20AA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1031 : public BaseScript { +class CustomObjectScript_1031 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0833 : public BaseScript { +class CustomObjectScript_0833 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0951 : public BaseScript { +class CustomObjectScript_0951 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0952 : public BaseScript { +class CustomObjectScript_0952 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0953 : public BaseScript { +class CustomObjectScript_0953 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0954 : public BaseScript { +class CustomObjectScript_0954 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095F : public BaseScript { +class CustomObjectScript_095F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0960 : public BaseScript { +class CustomObjectScript_0960 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0961 : public BaseScript { +class CustomObjectScript_0961 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0962 : public BaseScript { +class CustomObjectScript_0962 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0869 : public BaseScript { +class CustomObjectScript_0869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0963 : public BaseScript { +class CustomObjectScript_0963 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0964 : public BaseScript { +class CustomObjectScript_0964 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0965 : public BaseScript { +class CustomObjectScript_0965 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0966 : public BaseScript { +class CustomObjectScript_0966 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0995 : public BaseScript { +class CustomObjectScript_0995 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0994 : public BaseScript { +class CustomObjectScript_0994 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0993 : public BaseScript { +class CustomObjectScript_0993 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0992 : public BaseScript { +class CustomObjectScript_0992 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1191 : public BaseScript { +class CustomObjectScript_1191 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_103C : public BaseScript { +class CustomObjectScript_103C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_103E : public BaseScript { +class CustomObjectScript_103E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0841 : public BaseScript { +class CustomObjectScript_0841 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097A : public BaseScript { +class CustomObjectScript_097A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0997 : public BaseScript { +class CustomObjectScript_0997 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0996 : public BaseScript { +class CustomObjectScript_0996 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0805 : public BaseScript { +class CustomObjectScript_0805 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0804 : public BaseScript { +class CustomObjectScript_0804 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0998 : public BaseScript { +class CustomObjectScript_0998 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087E : public BaseScript { +class CustomObjectScript_087E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1834 : public BaseScript { +class CustomObjectScript_1834 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1877 : public BaseScript { +class CustomObjectScript_1877 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1078 : public BaseScript { +class CustomObjectScript_1078 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1070 : public BaseScript { +class CustomObjectScript_1070 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2075 : public BaseScript { +class CustomObjectScript_2075 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2076 : public BaseScript { +class CustomObjectScript_2076 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2863 : public BaseScript { +class CustomObjectScript_2863 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_207A : public BaseScript { +class CustomObjectScript_207A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_206D : public BaseScript { +class CustomObjectScript_206D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1079 : public BaseScript { +class CustomObjectScript_1079 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BF : public BaseScript { +class CustomObjectScript_09BF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BE : public BaseScript { +class CustomObjectScript_09BE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BD : public BaseScript { +class CustomObjectScript_09BD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BC : public BaseScript { +class CustomObjectScript_09BC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1071 : public BaseScript { +class CustomObjectScript_1071 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09CA : public BaseScript { +class CustomObjectScript_09CA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C9 : public BaseScript { +class CustomObjectScript_09C9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C8 : public BaseScript { +class CustomObjectScript_09C8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C7 : public BaseScript { +class CustomObjectScript_09C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C6 : public BaseScript { +class CustomObjectScript_09C6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C5 : public BaseScript { +class CustomObjectScript_09C5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C4 : public BaseScript { +class CustomObjectScript_09C4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C3 : public BaseScript { +class CustomObjectScript_09C3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C2 : public BaseScript { +class CustomObjectScript_09C2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_286E : public BaseScript { +class CustomObjectScript_286E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Mysterious_Isle.cpp b/scripts/Mysterious_Isle.cpp index 3dd7e05fb..32e30ecde 100644 --- a/scripts/Mysterious_Isle.cpp +++ b/scripts/Mysterious_Isle.cpp @@ -76,62 +76,62 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_481D : public BaseScript { +class CustomObjectScript_481D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_101E : public BaseScript { +class CustomObjectScript_101E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1021 : public BaseScript { +class CustomObjectScript_1021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1022 : public BaseScript { +class CustomObjectScript_1022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1035 : public BaseScript { +class CustomObjectScript_1035 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1020 : public BaseScript { +class CustomObjectScript_1020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1823 : public BaseScript { +class CustomObjectScript_1823 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_182A : public BaseScript { +class CustomObjectScript_182A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_101F : public BaseScript { +class CustomObjectScript_101F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2828 : public BaseScript { +class CustomObjectScript_2828 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0829 : public BaseScript { +class CustomObjectScript_0829 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Paranoia.cpp b/scripts/Paranoia.cpp index aab1bb4ba..0c57358e4 100644 --- a/scripts/Paranoia.cpp +++ b/scripts/Paranoia.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/PiccuStation.cpp b/scripts/PiccuStation.cpp index f435145c1..77f5e95e8 100644 --- a/scripts/PiccuStation.cpp +++ b/scripts/PiccuStation.cpp @@ -140,377 +140,377 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2109 : public BaseScript { +class CustomObjectScript_2109 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_206D : public BaseScript { +class CustomObjectScript_206D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_306C : public BaseScript { +class CustomObjectScript_306C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1869 : public BaseScript { +class CustomObjectScript_1869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_186A : public BaseScript { +class CustomObjectScript_186A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_184A : public BaseScript { +class CustomObjectScript_184A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4049 : public BaseScript { +class CustomObjectScript_4049 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0961 : public BaseScript { +class CustomObjectScript_0961 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0960 : public BaseScript { +class CustomObjectScript_0960 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095F : public BaseScript { +class CustomObjectScript_095F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095E : public BaseScript { +class CustomObjectScript_095E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3072 : public BaseScript { +class CustomObjectScript_3072 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_406F : public BaseScript { +class CustomObjectScript_406F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B3C : public BaseScript { +class CustomObjectScript_0B3C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1338 : public BaseScript { +class CustomObjectScript_1338 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1337 : public BaseScript { +class CustomObjectScript_1337 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1339 : public BaseScript { +class CustomObjectScript_1339 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_133A : public BaseScript { +class CustomObjectScript_133A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1B35 : public BaseScript { +class CustomObjectScript_1B35 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1B34 : public BaseScript { +class CustomObjectScript_1B34 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1B41 : public BaseScript { +class CustomObjectScript_1B41 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1336 : public BaseScript { +class CustomObjectScript_1336 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_6856 : public BaseScript { +class CustomObjectScript_6856 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B40 : public BaseScript { +class CustomObjectScript_0B40 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B30 : public BaseScript { +class CustomObjectScript_0B30 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B31 : public BaseScript { +class CustomObjectScript_0B31 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1B2E : public BaseScript { +class CustomObjectScript_1B2E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B2F : public BaseScript { +class CustomObjectScript_0B2F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B32 : public BaseScript { +class CustomObjectScript_0B32 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_232D : public BaseScript { +class CustomObjectScript_232D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B3F : public BaseScript { +class CustomObjectScript_0B3F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B3B : public BaseScript { +class CustomObjectScript_0B3B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B3D : public BaseScript { +class CustomObjectScript_0B3D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0B3E : public BaseScript { +class CustomObjectScript_0B3E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1195 : public BaseScript { +class CustomObjectScript_1195 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002B : public BaseScript { +class TriggerScript_002B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002A : public BaseScript { +class TriggerScript_002A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0029 : public BaseScript { +class TriggerScript_0029 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0028 : public BaseScript { +class TriggerScript_0028 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0027 : public BaseScript { +class TriggerScript_0027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0026 : public BaseScript { +class TriggerScript_0026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002C : public BaseScript { +class TriggerScript_002C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Polaris.cpp b/scripts/Polaris.cpp index 496b4bc8f..4671c2f43 100644 --- a/scripts/Polaris.cpp +++ b/scripts/Polaris.cpp @@ -71,32 +71,32 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_303F : public BaseScript { +class CustomObjectScript_303F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Quadsomniac.cpp b/scripts/Quadsomniac.cpp index f2e641496..ca3e1275a 100644 --- a/scripts/Quadsomniac.cpp +++ b/scripts/Quadsomniac.cpp @@ -73,47 +73,47 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/RudeAwakening.cpp b/scripts/RudeAwakening.cpp index 47904b139..d241d6ddd 100644 --- a/scripts/RudeAwakening.cpp +++ b/scripts/RudeAwakening.cpp @@ -73,47 +73,47 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1017 : public BaseScript { +class CustomObjectScript_1017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_101A : public BaseScript { +class CustomObjectScript_101A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1019 : public BaseScript { +class CustomObjectScript_1019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1016 : public BaseScript { +class CustomObjectScript_1016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1015 : public BaseScript { +class CustomObjectScript_1015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1018 : public BaseScript { +class CustomObjectScript_1018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1813 : public BaseScript { +class CustomObjectScript_1813 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1014 : public BaseScript { +class CustomObjectScript_1014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/SewerRat.cpp b/scripts/SewerRat.cpp index 4f6a4f1bb..a5dd9e1db 100644 --- a/scripts/SewerRat.cpp +++ b/scripts/SewerRat.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/TrainingMission.cpp b/scripts/TrainingMission.cpp index 5acf13ca6..cadc9b49e 100644 --- a/scripts/TrainingMission.cpp +++ b/scripts/TrainingMission.cpp @@ -95,152 +95,152 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_300D : public BaseScript { +class CustomObjectScript_300D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_300C : public BaseScript { +class CustomObjectScript_300C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_300B : public BaseScript { +class CustomObjectScript_300B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4809 : public BaseScript { +class CustomObjectScript_4809 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1803 : public BaseScript { +class CustomObjectScript_1803 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1806 : public BaseScript { +class CustomObjectScript_1806 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100A : public BaseScript { +class CustomObjectScript_100A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_300E : public BaseScript { +class CustomObjectScript_300E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2007 : public BaseScript { +class CustomObjectScript_2007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080F : public BaseScript { +class CustomObjectScript_080F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2008 : public BaseScript { +class CustomObjectScript_2008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1011 : public BaseScript { +class CustomObjectScript_1011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1010 : public BaseScript { +class CustomObjectScript_1010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1817 : public BaseScript { +class CustomObjectScript_1817 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081A : public BaseScript { +class CustomObjectScript_081A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081B : public BaseScript { +class CustomObjectScript_081B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081D : public BaseScript { +class CustomObjectScript_081D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081E : public BaseScript { +class CustomObjectScript_081E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081C : public BaseScript { +class CustomObjectScript_081C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0819 : public BaseScript { +class CustomObjectScript_0819 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_101F : public BaseScript { +class CustomObjectScript_101F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0820 : public BaseScript { +class CustomObjectScript_0820 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0821 : public BaseScript { +class CustomObjectScript_0821 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0822 : public BaseScript { +class CustomObjectScript_0822 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0823 : public BaseScript { +class CustomObjectScript_0823 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1824 : public BaseScript { +class CustomObjectScript_1824 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/Y2K.cpp b/scripts/Y2K.cpp index decc150d0..bc5a273e1 100644 --- a/scripts/Y2K.cpp +++ b/scripts/Y2K.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/aigame2.cpp b/scripts/aigame2.cpp index 84a1a04a6..d595c68e9 100644 --- a/scripts/aigame2.cpp +++ b/scripts/aigame2.cpp @@ -100,7 +100,7 @@ class aiObjScript { #define PEST_STATE_ROAM 0 #define PEST_STATE_HIVE 1 -class aiSamirPest : public aiObjScript { +class aiSamirPest final : public aiObjScript { public: aiSamirPest(); ~aiSamirPest(); @@ -133,7 +133,7 @@ class aiSamirPest : public aiObjScript { #define STATE_ATTACK 5 // regular attack #define STATE_STALK 6 // stalks player -class aiBlackStormTrooper : public aiObjScript { +class aiBlackStormTrooper final : public aiObjScript { public: aiBlackStormTrooper(); ~aiBlackStormTrooper(); @@ -183,7 +183,7 @@ class aiBlackStormTrooper : public aiObjScript { void find_targets(int me_handle, bool new_snipe_point); }; -class aiCreeper : public aiObjScript { +class aiCreeper final : public aiObjScript { public: aiCreeper(); ~aiCreeper(); @@ -213,7 +213,7 @@ class aiCreeper : public aiObjScript { virtual void OnMemRestore(void *ptr) { memory = (t_creep_memory *)ptr; }; }; -class aiLukeTurret : public aiObjScript { +class aiLukeTurret final : public aiObjScript { struct t_lturret_memory { float timer; }; @@ -231,7 +231,7 @@ class aiLukeTurret : public aiObjScript { virtual void OnMemRestore(void *ptr) { memory = (t_lturret_memory *)ptr; }; }; -class aiSTBlackBarrel : public aiObjScript { +class aiSTBlackBarrel final : public aiObjScript { struct t_stblackbarrel_memory { matrix orient; }; diff --git a/scripts/aigame4.cpp b/scripts/aigame4.cpp index bc3c18a0a..32e116d52 100644 --- a/scripts/aigame4.cpp +++ b/scripts/aigame4.cpp @@ -142,7 +142,7 @@ struct combwallhit_data { float time_left; }; -class CombWallHit : public BaseObjScript { +class CombWallHit final : public BaseObjScript { private: combwallhit_data *memory; @@ -160,7 +160,7 @@ struct droptarget_data { float last_set_time; }; -class DropTarget : public BaseObjScript { +class DropTarget final : public BaseObjScript { private: droptarget_data *memory; @@ -178,7 +178,7 @@ struct gun_data { bool f_fire; }; -class Gun : public BaseObjScript { +class Gun final : public BaseObjScript { gun_data *memory; public: @@ -194,7 +194,7 @@ struct casing_data { float time_left; }; -class Casing : public BaseObjScript { +class Casing final : public BaseObjScript { private: casing_data *memory; @@ -248,7 +248,7 @@ struct mercendboss_data { int combine_object; }; -class MercEndBoss : public BaseObjScript { +class MercEndBoss final : public BaseObjScript { private: mercendboss_data *memory; void DoInit(int me); @@ -268,7 +268,7 @@ class MercEndBoss : public BaseObjScript { // HangLight class //------------------ -class HangLight : public BaseObjScript { +class HangLight final : public BaseObjScript { private: void DoInit(int me); diff --git a/scripts/barney.cpp b/scripts/barney.cpp index 168aa2a39..4f0c77559 100644 --- a/scripts/barney.cpp +++ b/scripts/barney.cpp @@ -64,7 +64,7 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/clutter.cpp b/scripts/clutter.cpp index 586428e43..52934a18a 100644 --- a/scripts/clutter.cpp +++ b/scripts/clutter.cpp @@ -83,17 +83,17 @@ class ClutterScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data) { return CONTINUE_CHAIN | CONTINUE_DEFAULT; } }; -class FragCrate : public ClutterScript { +class FragCrate final : public ClutterScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class NapalmBarrel : public ClutterScript { +class NapalmBarrel final : public ClutterScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class AliencuplinkScript : public ClutterScript { +class AliencuplinkScript final : public ClutterScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; @@ -102,14 +102,14 @@ struct tTNTHighYield { vector last_vel; float lifetime; }; -class TNTHighYield : public ClutterScript { +class TNTHighYield final : public ClutterScript { public: TNTHighYield() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); tTNTHighYield *memory; }; -class TNTMedYield : public ClutterScript { +class TNTMedYield final : public ClutterScript { public: TNTMedYield() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -119,13 +119,13 @@ class TNTMedYield : public ClutterScript { struct tFallingRock { float lifeleft; }; -class FallingRock : public ClutterScript { +class FallingRock final : public ClutterScript { public: FallingRock() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); tFallingRock *memory; }; -class LavaRock : public ClutterScript { +class LavaRock final : public ClutterScript { public: LavaRock() { memory = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); diff --git a/scripts/generic.cpp b/scripts/generic.cpp index 77595e942..2e1fa5bbf 100644 --- a/scripts/generic.cpp +++ b/scripts/generic.cpp @@ -94,7 +94,7 @@ class GenericScript { protected: }; -class GenericDoor : public GenericScript { +class GenericDoor final : public GenericScript { public: GenericDoor() {} int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -104,14 +104,14 @@ struct forcewallmemory { int object_handle; }; -class ForceWallScript : public GenericScript { +class ForceWallScript final : public GenericScript { public: ForceWallScript(); int16_t CallEvent(int event, tOSIRISEventInfo *data); forcewallmemory *memory; }; -class WingNutScript : public GenericScript { +class WingNutScript final : public GenericScript { public: WingNutScript() {} int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -127,7 +127,7 @@ struct rapidfirememory { uint8_t collided_pnum; }; -class RapidFireScript : public GenericScript { +class RapidFireScript final : public GenericScript { public: RapidFireScript(); diff --git a/scripts/level1.cpp b/scripts/level1.cpp index ce2841413..a27921f45 100644 --- a/scripts/level1.cpp +++ b/scripts/level1.cpp @@ -90,127 +90,127 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3855 : public BaseScript { +class CustomObjectScript_3855 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DC : public BaseScript { +class CustomObjectScript_10DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E0 : public BaseScript { +class CustomObjectScript_10E0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DF : public BaseScript { +class CustomObjectScript_10DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08E8 : public BaseScript { +class CustomObjectScript_08E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_584D : public BaseScript { +class CustomObjectScript_584D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0816 : public BaseScript { +class CustomObjectScript_0816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100D : public BaseScript { +class CustomObjectScript_100D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_301B : public BaseScript { +class CustomObjectScript_301B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18DB : public BaseScript { +class CustomObjectScript_18DB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level10.cpp b/scripts/level10.cpp index 118bf4fd6..85e5fe729 100644 --- a/scripts/level10.cpp +++ b/scripts/level10.cpp @@ -149,422 +149,422 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2042 : public BaseScript { +class CustomObjectScript_2042 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10A3 : public BaseScript { +class CustomObjectScript_10A3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_094B : public BaseScript { +class CustomObjectScript_094B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0945 : public BaseScript { +class CustomObjectScript_0945 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_113E : public BaseScript { +class CustomObjectScript_113E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_193F : public BaseScript { +class CustomObjectScript_193F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2140 : public BaseScript { +class CustomObjectScript_2140 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0875 : public BaseScript { +class CustomObjectScript_0875 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0877 : public BaseScript { +class CustomObjectScript_0877 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_105C : public BaseScript { +class CustomObjectScript_105C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0878 : public BaseScript { +class CustomObjectScript_0878 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28BA : public BaseScript { +class CustomObjectScript_28BA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2133 : public BaseScript { +class CustomObjectScript_2133 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1139 : public BaseScript { +class CustomObjectScript_1139 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_098A : public BaseScript { +class CustomObjectScript_098A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08AA : public BaseScript { +class CustomObjectScript_08AA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18BF : public BaseScript { +class CustomObjectScript_18BF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10C0 : public BaseScript { +class CustomObjectScript_10C0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2904 : public BaseScript { +class CustomObjectScript_2904 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3088 : public BaseScript { +class CustomObjectScript_3088 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2105 : public BaseScript { +class CustomObjectScript_2105 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3092 : public BaseScript { +class CustomObjectScript_3092 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_187C : public BaseScript { +class CustomObjectScript_187C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FA : public BaseScript { +class CustomObjectScript_10FA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0903 : public BaseScript { +class CustomObjectScript_0903 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1902 : public BaseScript { +class CustomObjectScript_1902 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4047 : public BaseScript { +class CustomObjectScript_4047 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_289B : public BaseScript { +class CustomObjectScript_289B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3849 : public BaseScript { +class CustomObjectScript_3849 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_184B : public BaseScript { +class CustomObjectScript_184B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_204A : public BaseScript { +class CustomObjectScript_204A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2064 : public BaseScript { +class CustomObjectScript_2064 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1065 : public BaseScript { +class CustomObjectScript_1065 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2063 : public BaseScript { +class CustomObjectScript_2063 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_5843 : public BaseScript { +class CustomObjectScript_5843 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1095 : public BaseScript { +class CustomObjectScript_1095 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1094 : public BaseScript { +class CustomObjectScript_1094 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1080 : public BaseScript { +class CustomObjectScript_1080 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_187F : public BaseScript { +class CustomObjectScript_187F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_501A : public BaseScript { +class CustomObjectScript_501A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_D80D : public BaseScript { +class CustomObjectScript_D80D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A1 : public BaseScript { +class CustomObjectScript_18A1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_208B : public BaseScript { +class CustomObjectScript_208B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2074 : public BaseScript { +class CustomObjectScript_2074 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_203D : public BaseScript { +class CustomObjectScript_203D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11B1 : public BaseScript { +class CustomObjectScript_11B1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3898 : public BaseScript { +class CustomObjectScript_3898 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_303C : public BaseScript { +class CustomObjectScript_303C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2090 : public BaseScript { +class CustomObjectScript_2090 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09D4 : public BaseScript { +class CustomObjectScript_09D4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1050 : public BaseScript { +class CustomObjectScript_1050 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2044 : public BaseScript { +class CustomObjectScript_2044 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1845 : public BaseScript { +class CustomObjectScript_1845 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1058 : public BaseScript { +class CustomObjectScript_1058 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A3 : public BaseScript { +class CustomObjectScript_09A3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11AF : public BaseScript { +class CustomObjectScript_11AF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_49B0 : public BaseScript { +class CustomObjectScript_49B0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11D2 : public BaseScript { +class CustomObjectScript_11D2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09D5 : public BaseScript { +class CustomObjectScript_09D5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A5 : public BaseScript { +class CustomObjectScript_18A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FB : public BaseScript { +class CustomObjectScript_10FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19A2 : public BaseScript { +class CustomObjectScript_19A2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A4 : public BaseScript { +class CustomObjectScript_09A4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A5 : public BaseScript { +class CustomObjectScript_09A5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A6 : public BaseScript { +class CustomObjectScript_09A6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A1 : public BaseScript { +class CustomObjectScript_09A1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20FD : public BaseScript { +class CustomObjectScript_20FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_187E : public BaseScript { +class CustomObjectScript_187E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_987D : public BaseScript { +class CustomObjectScript_987D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09AA : public BaseScript { +class CustomObjectScript_09AA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0816 : public BaseScript { +class CustomObjectScript_0816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level11.cpp b/scripts/level11.cpp index 823a34e56..9e70cf79b 100644 --- a/scripts/level11.cpp +++ b/scripts/level11.cpp @@ -214,747 +214,747 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0985 : public BaseScript { +class CustomObjectScript_0985 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0942 : public BaseScript { +class CustomObjectScript_0942 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0941 : public BaseScript { +class CustomObjectScript_0941 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_092B : public BaseScript { +class CustomObjectScript_092B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_093E : public BaseScript { +class CustomObjectScript_093E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0940 : public BaseScript { +class CustomObjectScript_0940 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_093F : public BaseScript { +class CustomObjectScript_093F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0954 : public BaseScript { +class CustomObjectScript_0954 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3951 : public BaseScript { +class CustomObjectScript_3951 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08CF : public BaseScript { +class CustomObjectScript_08CF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08CC : public BaseScript { +class CustomObjectScript_08CC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D2 : public BaseScript { +class CustomObjectScript_10D2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0943 : public BaseScript { +class CustomObjectScript_0943 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0944 : public BaseScript { +class CustomObjectScript_0944 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08CE : public BaseScript { +class CustomObjectScript_08CE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0952 : public BaseScript { +class CustomObjectScript_0952 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0953 : public BaseScript { +class CustomObjectScript_0953 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1826 : public BaseScript { +class CustomObjectScript_1826 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1180 : public BaseScript { +class CustomObjectScript_1180 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1919 : public BaseScript { +class CustomObjectScript_1919 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0911 : public BaseScript { +class CustomObjectScript_0911 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_310B : public BaseScript { +class CustomObjectScript_310B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D0 : public BaseScript { +class CustomObjectScript_10D0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D1 : public BaseScript { +class CustomObjectScript_08D1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A12 : public BaseScript { +class CustomObjectScript_0A12 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097C : public BaseScript { +class CustomObjectScript_097C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097D : public BaseScript { +class CustomObjectScript_097D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097E : public BaseScript { +class CustomObjectScript_097E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097B : public BaseScript { +class CustomObjectScript_097B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_097A : public BaseScript { +class CustomObjectScript_097A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0976 : public BaseScript { +class CustomObjectScript_0976 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0977 : public BaseScript { +class CustomObjectScript_0977 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0978 : public BaseScript { +class CustomObjectScript_0978 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0979 : public BaseScript { +class CustomObjectScript_0979 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0975 : public BaseScript { +class CustomObjectScript_0975 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0974 : public BaseScript { +class CustomObjectScript_0974 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0973 : public BaseScript { +class CustomObjectScript_0973 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0972 : public BaseScript { +class CustomObjectScript_0972 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0971 : public BaseScript { +class CustomObjectScript_0971 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0970 : public BaseScript { +class CustomObjectScript_0970 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096F : public BaseScript { +class CustomObjectScript_096F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096E : public BaseScript { +class CustomObjectScript_096E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1182 : public BaseScript { +class CustomObjectScript_1182 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1181 : public BaseScript { +class CustomObjectScript_1181 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_110A : public BaseScript { +class CustomObjectScript_110A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1109 : public BaseScript { +class CustomObjectScript_1109 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1108 : public BaseScript { +class CustomObjectScript_1108 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DF : public BaseScript { +class CustomObjectScript_10DF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DE : public BaseScript { +class CustomObjectScript_10DE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DD : public BaseScript { +class CustomObjectScript_10DD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DC : public BaseScript { +class CustomObjectScript_10DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DB : public BaseScript { +class CustomObjectScript_10DB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D6 : public BaseScript { +class CustomObjectScript_10D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D7 : public BaseScript { +class CustomObjectScript_10D7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D8 : public BaseScript { +class CustomObjectScript_10D8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_116C : public BaseScript { +class CustomObjectScript_116C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D5 : public BaseScript { +class CustomObjectScript_10D5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10DA : public BaseScript { +class CustomObjectScript_10DA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18D4 : public BaseScript { +class CustomObjectScript_18D4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18CD : public BaseScript { +class CustomObjectScript_18CD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18D3 : public BaseScript { +class CustomObjectScript_18D3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10EA : public BaseScript { +class CustomObjectScript_10EA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18EC : public BaseScript { +class CustomObjectScript_18EC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10EB : public BaseScript { +class CustomObjectScript_10EB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18E6 : public BaseScript { +class CustomObjectScript_18E6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E8 : public BaseScript { +class CustomObjectScript_10E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E9 : public BaseScript { +class CustomObjectScript_10E9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E7 : public BaseScript { +class CustomObjectScript_10E7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E3 : public BaseScript { +class CustomObjectScript_10E3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E5 : public BaseScript { +class CustomObjectScript_10E5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10E4 : public BaseScript { +class CustomObjectScript_10E4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18E2 : public BaseScript { +class CustomObjectScript_18E2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10EE : public BaseScript { +class CustomObjectScript_10EE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18ED : public BaseScript { +class CustomObjectScript_18ED final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F6 : public BaseScript { +class CustomObjectScript_10F6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F7 : public BaseScript { +class CustomObjectScript_10F7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F5 : public BaseScript { +class CustomObjectScript_10F5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F8 : public BaseScript { +class CustomObjectScript_10F8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18EF : public BaseScript { +class CustomObjectScript_18EF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18F0 : public BaseScript { +class CustomObjectScript_18F0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F9 : public BaseScript { +class CustomObjectScript_10F9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FA : public BaseScript { +class CustomObjectScript_10FA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FB : public BaseScript { +class CustomObjectScript_10FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FD : public BaseScript { +class CustomObjectScript_10FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FC : public BaseScript { +class CustomObjectScript_10FC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FE : public BaseScript { +class CustomObjectScript_10FE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FF : public BaseScript { +class CustomObjectScript_10FF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20F1 : public BaseScript { +class CustomObjectScript_20F1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F4 : public BaseScript { +class CustomObjectScript_10F4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F3 : public BaseScript { +class CustomObjectScript_10F3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F2 : public BaseScript { +class CustomObjectScript_10F2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1101 : public BaseScript { +class CustomObjectScript_1101 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1100 : public BaseScript { +class CustomObjectScript_1100 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1102 : public BaseScript { +class CustomObjectScript_1102 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1103 : public BaseScript { +class CustomObjectScript_1103 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1106 : public BaseScript { +class CustomObjectScript_1106 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1107 : public BaseScript { +class CustomObjectScript_1107 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1104 : public BaseScript { +class CustomObjectScript_1104 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1105 : public BaseScript { +class CustomObjectScript_1105 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A53 : public BaseScript { +class CustomObjectScript_0A53 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080F : public BaseScript { +class CustomObjectScript_080F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096A : public BaseScript { +class CustomObjectScript_096A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A66 : public BaseScript { +class CustomObjectScript_0A66 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A65 : public BaseScript { +class CustomObjectScript_0A65 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A64 : public BaseScript { +class CustomObjectScript_0A64 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A63 : public BaseScript { +class CustomObjectScript_0A63 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A62 : public BaseScript { +class CustomObjectScript_0A62 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1221 : public BaseScript { +class CustomObjectScript_1221 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_096B : public BaseScript { +class CustomObjectScript_096B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0969 : public BaseScript { +class CustomObjectScript_0969 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1A7F : public BaseScript { +class CustomObjectScript_1A7F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_227E : public BaseScript { +class CustomObjectScript_227E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0026 : public BaseScript { +class TriggerScript_0026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level13.cpp b/scripts/level13.cpp index 4bef365ff..06ecffbda 100644 --- a/scripts/level13.cpp +++ b/scripts/level13.cpp @@ -172,537 +172,537 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1074 : public BaseScript { +class CustomObjectScript_1074 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0878 : public BaseScript { +class CustomObjectScript_0878 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0877 : public BaseScript { +class CustomObjectScript_0877 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0879 : public BaseScript { +class CustomObjectScript_0879 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_6813 : public BaseScript { +class CustomObjectScript_6813 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083A : public BaseScript { +class CustomObjectScript_083A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0853 : public BaseScript { +class CustomObjectScript_0853 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0837 : public BaseScript { +class CustomObjectScript_0837 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0852 : public BaseScript { +class CustomObjectScript_0852 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2027 : public BaseScript { +class CustomObjectScript_2027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087E : public BaseScript { +class CustomObjectScript_087E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_9021 : public BaseScript { +class CustomObjectScript_9021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_282A : public BaseScript { +class CustomObjectScript_282A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0838 : public BaseScript { +class CustomObjectScript_0838 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084E : public BaseScript { +class CustomObjectScript_084E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085F : public BaseScript { +class CustomObjectScript_085F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085D : public BaseScript { +class CustomObjectScript_085D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085A : public BaseScript { +class CustomObjectScript_085A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0844 : public BaseScript { +class CustomObjectScript_0844 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0835 : public BaseScript { +class CustomObjectScript_0835 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1816 : public BaseScript { +class CustomObjectScript_1816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0825 : public BaseScript { +class CustomObjectScript_0825 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084B : public BaseScript { +class CustomObjectScript_084B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0839 : public BaseScript { +class CustomObjectScript_0839 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1847 : public BaseScript { +class CustomObjectScript_1847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10C6 : public BaseScript { +class CustomObjectScript_10C6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11F6 : public BaseScript { +class CustomObjectScript_11F6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A24 : public BaseScript { +class CustomObjectScript_0A24 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A23 : public BaseScript { +class CustomObjectScript_0A23 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18A0 : public BaseScript { +class CustomObjectScript_18A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1090 : public BaseScript { +class CustomObjectScript_1090 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18B0 : public BaseScript { +class CustomObjectScript_18B0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B6 : public BaseScript { +class CustomObjectScript_08B6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B5 : public BaseScript { +class CustomObjectScript_08B5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A9 : public BaseScript { +class CustomObjectScript_08A9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10BD : public BaseScript { +class CustomObjectScript_10BD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08BE : public BaseScript { +class CustomObjectScript_08BE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_105C : public BaseScript { +class CustomObjectScript_105C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084D : public BaseScript { +class CustomObjectScript_084D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_295F : public BaseScript { +class CustomObjectScript_295F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_182C : public BaseScript { +class CustomObjectScript_182C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2023 : public BaseScript { +class CustomObjectScript_2023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0840 : public BaseScript { +class CustomObjectScript_0840 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_30C7 : public BaseScript { +class CustomObjectScript_30C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A5C : public BaseScript { +class CustomObjectScript_0A5C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1134 : public BaseScript { +class CustomObjectScript_1134 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0887 : public BaseScript { +class CustomObjectScript_0887 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095B : public BaseScript { +class CustomObjectScript_095B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_295E : public BaseScript { +class CustomObjectScript_295E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09F0 : public BaseScript { +class CustomObjectScript_09F0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09D3 : public BaseScript { +class CustomObjectScript_09D3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_087D : public BaseScript { +class CustomObjectScript_087D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0869 : public BaseScript { +class CustomObjectScript_0869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09F9 : public BaseScript { +class CustomObjectScript_09F9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_193B : public BaseScript { +class CustomObjectScript_193B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A08 : public BaseScript { +class CustomObjectScript_0A08 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A14 : public BaseScript { +class CustomObjectScript_0A14 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08CB : public BaseScript { +class CustomObjectScript_08CB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A35 : public BaseScript { +class CustomObjectScript_0A35 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_9233 : public BaseScript { +class CustomObjectScript_9233 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_092B : public BaseScript { +class CustomObjectScript_092B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0929 : public BaseScript { +class CustomObjectScript_0929 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_112A : public BaseScript { +class CustomObjectScript_112A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0928 : public BaseScript { +class CustomObjectScript_0928 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_29E9 : public BaseScript { +class CustomObjectScript_29E9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0028 : public BaseScript { +class TriggerScript_0028 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0026 : public BaseScript { +class TriggerScript_0026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0027 : public BaseScript { +class TriggerScript_0027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0029 : public BaseScript { +class TriggerScript_0029 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002A : public BaseScript { +class TriggerScript_002A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002B : public BaseScript { +class TriggerScript_002B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level14.cpp b/scripts/level14.cpp index dae460851..4ae1990a1 100644 --- a/scripts/level14.cpp +++ b/scripts/level14.cpp @@ -112,237 +112,237 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10B8 : public BaseScript { +class CustomObjectScript_10B8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0892 : public BaseScript { +class CustomObjectScript_0892 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0891 : public BaseScript { +class CustomObjectScript_0891 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0890 : public BaseScript { +class CustomObjectScript_0890 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A8 : public BaseScript { +class CustomObjectScript_08A8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A7 : public BaseScript { +class CustomObjectScript_08A7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_180F : public BaseScript { +class CustomObjectScript_180F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1081 : public BaseScript { +class CustomObjectScript_1081 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_186D : public BaseScript { +class CustomObjectScript_186D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08D3 : public BaseScript { +class CustomObjectScript_08D3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_188F : public BaseScript { +class CustomObjectScript_188F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0888 : public BaseScript { +class CustomObjectScript_0888 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_204F : public BaseScript { +class CustomObjectScript_204F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2870 : public BaseScript { +class CustomObjectScript_2870 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1025 : public BaseScript { +class CustomObjectScript_1025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A0 : public BaseScript { +class CustomObjectScript_08A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_189E : public BaseScript { +class CustomObjectScript_189E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_109B : public BaseScript { +class CustomObjectScript_109B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_109D : public BaseScript { +class CustomObjectScript_109D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_409A : public BaseScript { +class CustomObjectScript_409A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_309C : public BaseScript { +class CustomObjectScript_309C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1083 : public BaseScript { +class CustomObjectScript_1083 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088A : public BaseScript { +class CustomObjectScript_088A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_188B : public BaseScript { +class CustomObjectScript_188B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088C : public BaseScript { +class CustomObjectScript_088C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088D : public BaseScript { +class CustomObjectScript_088D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_088E : public BaseScript { +class CustomObjectScript_088E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2880 : public BaseScript { +class CustomObjectScript_2880 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10C3 : public BaseScript { +class CustomObjectScript_10C3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4089 : public BaseScript { +class CustomObjectScript_4089 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_406F : public BaseScript { +class CustomObjectScript_406F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1082 : public BaseScript { +class CustomObjectScript_1082 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D5 : public BaseScript { +class CustomObjectScript_10D5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D4 : public BaseScript { +class CustomObjectScript_10D4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D6 : public BaseScript { +class CustomObjectScript_10D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0917 : public BaseScript { +class CustomObjectScript_0917 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10D7 : public BaseScript { +class CustomObjectScript_10D7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level17.cpp b/scripts/level17.cpp index a6820404d..85dea7045 100644 --- a/scripts/level17.cpp +++ b/scripts/level17.cpp @@ -198,667 +198,667 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0821 : public BaseScript { +class CustomObjectScript_0821 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0820 : public BaseScript { +class CustomObjectScript_0820 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_181E : public BaseScript { +class CustomObjectScript_181E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081F : public BaseScript { +class CustomObjectScript_081F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0814 : public BaseScript { +class CustomObjectScript_0814 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0815 : public BaseScript { +class CustomObjectScript_0815 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0816 : public BaseScript { +class CustomObjectScript_0816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0818 : public BaseScript { +class CustomObjectScript_0818 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0819 : public BaseScript { +class CustomObjectScript_0819 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0817 : public BaseScript { +class CustomObjectScript_0817 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1024 : public BaseScript { +class CustomObjectScript_1024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0826 : public BaseScript { +class CustomObjectScript_0826 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0828 : public BaseScript { +class CustomObjectScript_0828 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0827 : public BaseScript { +class CustomObjectScript_0827 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_086A : public BaseScript { +class CustomObjectScript_086A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_086B : public BaseScript { +class CustomObjectScript_086B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1025 : public BaseScript { +class CustomObjectScript_1025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0829 : public BaseScript { +class CustomObjectScript_0829 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0809 : public BaseScript { +class CustomObjectScript_0809 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0808 : public BaseScript { +class CustomObjectScript_0808 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1007 : public BaseScript { +class CustomObjectScript_1007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1006 : public BaseScript { +class CustomObjectScript_1006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0805 : public BaseScript { +class CustomObjectScript_0805 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1004 : public BaseScript { +class CustomObjectScript_1004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1003 : public BaseScript { +class CustomObjectScript_1003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100E : public BaseScript { +class CustomObjectScript_100E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0845 : public BaseScript { +class CustomObjectScript_0845 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0844 : public BaseScript { +class CustomObjectScript_0844 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0843 : public BaseScript { +class CustomObjectScript_0843 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0842 : public BaseScript { +class CustomObjectScript_0842 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0841 : public BaseScript { +class CustomObjectScript_0841 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0840 : public BaseScript { +class CustomObjectScript_0840 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083F : public BaseScript { +class CustomObjectScript_083F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083E : public BaseScript { +class CustomObjectScript_083E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083C : public BaseScript { +class CustomObjectScript_083C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083B : public BaseScript { +class CustomObjectScript_083B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083A : public BaseScript { +class CustomObjectScript_083A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0851 : public BaseScript { +class CustomObjectScript_0851 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0850 : public BaseScript { +class CustomObjectScript_0850 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084F : public BaseScript { +class CustomObjectScript_084F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084E : public BaseScript { +class CustomObjectScript_084E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084D : public BaseScript { +class CustomObjectScript_084D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084C : public BaseScript { +class CustomObjectScript_084C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084B : public BaseScript { +class CustomObjectScript_084B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084A : public BaseScript { +class CustomObjectScript_084A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0849 : public BaseScript { +class CustomObjectScript_0849 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0848 : public BaseScript { +class CustomObjectScript_0848 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0847 : public BaseScript { +class CustomObjectScript_0847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0846 : public BaseScript { +class CustomObjectScript_0846 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085D : public BaseScript { +class CustomObjectScript_085D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085C : public BaseScript { +class CustomObjectScript_085C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085B : public BaseScript { +class CustomObjectScript_085B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085A : public BaseScript { +class CustomObjectScript_085A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0859 : public BaseScript { +class CustomObjectScript_0859 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0858 : public BaseScript { +class CustomObjectScript_0858 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0857 : public BaseScript { +class CustomObjectScript_0857 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0856 : public BaseScript { +class CustomObjectScript_0856 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0855 : public BaseScript { +class CustomObjectScript_0855 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0854 : public BaseScript { +class CustomObjectScript_0854 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0853 : public BaseScript { +class CustomObjectScript_0853 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0852 : public BaseScript { +class CustomObjectScript_0852 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0869 : public BaseScript { +class CustomObjectScript_0869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0868 : public BaseScript { +class CustomObjectScript_0868 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0867 : public BaseScript { +class CustomObjectScript_0867 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0866 : public BaseScript { +class CustomObjectScript_0866 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0865 : public BaseScript { +class CustomObjectScript_0865 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0864 : public BaseScript { +class CustomObjectScript_0864 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0863 : public BaseScript { +class CustomObjectScript_0863 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0862 : public BaseScript { +class CustomObjectScript_0862 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0861 : public BaseScript { +class CustomObjectScript_0861 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0860 : public BaseScript { +class CustomObjectScript_0860 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085F : public BaseScript { +class CustomObjectScript_085F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085E : public BaseScript { +class CustomObjectScript_085E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003B : public BaseScript { +class TriggerScript_003B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003A : public BaseScript { +class TriggerScript_003A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0035 : public BaseScript { +class TriggerScript_0035 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0034 : public BaseScript { +class TriggerScript_0034 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0031 : public BaseScript { +class TriggerScript_0031 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002F : public BaseScript { +class TriggerScript_002F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002E : public BaseScript { +class TriggerScript_002E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003D : public BaseScript { +class TriggerScript_003D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003C : public BaseScript { +class TriggerScript_003C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0039 : public BaseScript { +class TriggerScript_0039 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0038 : public BaseScript { +class TriggerScript_0038 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0037 : public BaseScript { +class TriggerScript_0037 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0036 : public BaseScript { +class TriggerScript_0036 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0033 : public BaseScript { +class TriggerScript_0033 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0032 : public BaseScript { +class TriggerScript_0032 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0030 : public BaseScript { +class TriggerScript_0030 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002C : public BaseScript { +class TriggerScript_002C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0027 : public BaseScript { +class TriggerScript_0027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0026 : public BaseScript { +class TriggerScript_0026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0040 : public BaseScript { +class TriggerScript_0040 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level2.cpp b/scripts/level2.cpp index 0e38d006a..084f23ae3 100644 --- a/scripts/level2.cpp +++ b/scripts/level2.cpp @@ -132,337 +132,337 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_082D : public BaseScript { +class CustomObjectScript_082D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_082E : public BaseScript { +class CustomObjectScript_082E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_082F : public BaseScript { +class CustomObjectScript_082F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0830 : public BaseScript { +class CustomObjectScript_0830 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0831 : public BaseScript { +class CustomObjectScript_0831 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2112 : public BaseScript { +class CustomObjectScript_2112 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11F2 : public BaseScript { +class CustomObjectScript_11F2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11F4 : public BaseScript { +class CustomObjectScript_11F4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11F6 : public BaseScript { +class CustomObjectScript_11F6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19F7 : public BaseScript { +class CustomObjectScript_19F7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11FB : public BaseScript { +class CustomObjectScript_11FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1211 : public BaseScript { +class CustomObjectScript_1211 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0885 : public BaseScript { +class CustomObjectScript_0885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_080D : public BaseScript { +class CustomObjectScript_080D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09EC : public BaseScript { +class CustomObjectScript_09EC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11EB : public BaseScript { +class CustomObjectScript_11EB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19E9 : public BaseScript { +class CustomObjectScript_19E9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19E8 : public BaseScript { +class CustomObjectScript_19E8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19EA : public BaseScript { +class CustomObjectScript_19EA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09E7 : public BaseScript { +class CustomObjectScript_09E7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09E6 : public BaseScript { +class CustomObjectScript_09E6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11BB : public BaseScript { +class CustomObjectScript_11BB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BC : public BaseScript { +class CustomObjectScript_09BC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BD : public BaseScript { +class CustomObjectScript_09BD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09BE : public BaseScript { +class CustomObjectScript_09BE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11BF : public BaseScript { +class CustomObjectScript_11BF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C0 : public BaseScript { +class CustomObjectScript_09C0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C1 : public BaseScript { +class CustomObjectScript_11C1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11BA : public BaseScript { +class CustomObjectScript_11BA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C9 : public BaseScript { +class CustomObjectScript_09C9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C8 : public BaseScript { +class CustomObjectScript_09C8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C7 : public BaseScript { +class CustomObjectScript_09C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C6 : public BaseScript { +class CustomObjectScript_09C6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C5 : public BaseScript { +class CustomObjectScript_09C5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C4 : public BaseScript { +class CustomObjectScript_09C4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C3 : public BaseScript { +class CustomObjectScript_09C3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C2 : public BaseScript { +class CustomObjectScript_09C2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_094E : public BaseScript { +class CustomObjectScript_094E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level3.cpp b/scripts/level3.cpp index c696e2a50..e1fe45646 100644 --- a/scripts/level3.cpp +++ b/scripts/level3.cpp @@ -129,322 +129,322 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2109 : public BaseScript { +class CustomObjectScript_2109 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1AE9 : public BaseScript { +class CustomObjectScript_1AE9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_206D : public BaseScript { +class CustomObjectScript_206D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_117F : public BaseScript { +class CustomObjectScript_117F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_184A : public BaseScript { +class CustomObjectScript_184A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_4049 : public BaseScript { +class CustomObjectScript_4049 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0961 : public BaseScript { +class CustomObjectScript_0961 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0960 : public BaseScript { +class CustomObjectScript_0960 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095F : public BaseScript { +class CustomObjectScript_095F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_095E : public BaseScript { +class CustomObjectScript_095E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28D9 : public BaseScript { +class CustomObjectScript_28D9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_38E0 : public BaseScript { +class CustomObjectScript_38E0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1995 : public BaseScript { +class CustomObjectScript_1995 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11CB : public BaseScript { +class CustomObjectScript_11CB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20D7 : public BaseScript { +class CustomObjectScript_20D7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_30D8 : public BaseScript { +class CustomObjectScript_30D8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20DC : public BaseScript { +class CustomObjectScript_20DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28DA : public BaseScript { +class CustomObjectScript_28DA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11B7 : public BaseScript { +class CustomObjectScript_11B7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21A7 : public BaseScript { +class CustomObjectScript_21A7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C9 : public BaseScript { +class CustomObjectScript_11C9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21CA : public BaseScript { +class CustomObjectScript_21CA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_202B : public BaseScript { +class CustomObjectScript_202B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18D6 : public BaseScript { +class CustomObjectScript_18D6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_202D : public BaseScript { +class CustomObjectScript_202D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21CD : public BaseScript { +class CustomObjectScript_21CD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_182E : public BaseScript { +class CustomObjectScript_182E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_31CC : public BaseScript { +class CustomObjectScript_31CC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_431E : public BaseScript { +class CustomObjectScript_431E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1320 : public BaseScript { +class CustomObjectScript_1320 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_131F : public BaseScript { +class CustomObjectScript_131F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_131D : public BaseScript { +class CustomObjectScript_131D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100C : public BaseScript { +class CustomObjectScript_100C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18AD : public BaseScript { +class CustomObjectScript_18AD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level4.cpp b/scripts/level4.cpp index ac8c19b85..58bd871d4 100644 --- a/scripts/level4.cpp +++ b/scripts/level4.cpp @@ -80,77 +80,77 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B3 : public BaseScript { +class CustomObjectScript_08B3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08AE : public BaseScript { +class CustomObjectScript_08AE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1213 : public BaseScript { +class CustomObjectScript_1213 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_117D : public BaseScript { +class CustomObjectScript_117D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level5.cpp b/scripts/level5.cpp index 56a86e33a..23f3c3fd4 100644 --- a/scripts/level5.cpp +++ b/scripts/level5.cpp @@ -99,167 +99,167 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_200D : public BaseScript { +class CustomObjectScript_200D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_281B : public BaseScript { +class CustomObjectScript_281B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3816 : public BaseScript { +class CustomObjectScript_3816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1012 : public BaseScript { +class CustomObjectScript_1012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_181C : public BaseScript { +class CustomObjectScript_181C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0820 : public BaseScript { +class CustomObjectScript_0820 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1044 : public BaseScript { +class CustomObjectScript_1044 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level7.cpp b/scripts/level7.cpp index 4ed28b74d..e37908d72 100644 --- a/scripts/level7.cpp +++ b/scripts/level7.cpp @@ -131,332 +131,332 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1097 : public BaseScript { +class CustomObjectScript_1097 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B5 : public BaseScript { +class CustomObjectScript_08B5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0895 : public BaseScript { +class CustomObjectScript_0895 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A1 : public BaseScript { +class CustomObjectScript_08A1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08A2 : public BaseScript { +class CustomObjectScript_08A2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08AF : public BaseScript { +class CustomObjectScript_08AF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1901 : public BaseScript { +class CustomObjectScript_1901 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090A : public BaseScript { +class CustomObjectScript_090A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1109 : public BaseScript { +class CustomObjectScript_1109 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0908 : public BaseScript { +class CustomObjectScript_0908 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0907 : public BaseScript { +class CustomObjectScript_0907 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090C : public BaseScript { +class CustomObjectScript_090C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_110D : public BaseScript { +class CustomObjectScript_110D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090B : public BaseScript { +class CustomObjectScript_090B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_30A8 : public BaseScript { +class CustomObjectScript_30A8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0940 : public BaseScript { +class CustomObjectScript_0940 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0941 : public BaseScript { +class CustomObjectScript_0941 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0944 : public BaseScript { +class CustomObjectScript_0944 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B4 : public BaseScript { +class CustomObjectScript_08B4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08B3 : public BaseScript { +class CustomObjectScript_08B3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0943 : public BaseScript { +class CustomObjectScript_0943 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0942 : public BaseScript { +class CustomObjectScript_0942 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_18B8 : public BaseScript { +class CustomObjectScript_18B8 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20B1 : public BaseScript { +class CustomObjectScript_20B1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_089A : public BaseScript { +class CustomObjectScript_089A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0945 : public BaseScript { +class CustomObjectScript_0945 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_192A : public BaseScript { +class CustomObjectScript_192A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_092B : public BaseScript { +class CustomObjectScript_092B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1021 : public BaseScript { +class CustomObjectScript_1021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_092C : public BaseScript { +class CustomObjectScript_092C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_112D : public BaseScript { +class CustomObjectScript_112D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0861 : public BaseScript { +class CustomObjectScript_0861 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0862 : public BaseScript { +class CustomObjectScript_0862 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_186B : public BaseScript { +class CustomObjectScript_186B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2071 : public BaseScript { +class CustomObjectScript_2071 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2148 : public BaseScript { +class CustomObjectScript_2148 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2059 : public BaseScript { +class CustomObjectScript_2059 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_205B : public BaseScript { +class CustomObjectScript_205B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1947 : public BaseScript { +class CustomObjectScript_1947 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2146 : public BaseScript { +class CustomObjectScript_2146 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_205A : public BaseScript { +class CustomObjectScript_205A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0923 : public BaseScript { +class CustomObjectScript_0923 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/level8.cpp b/scripts/level8.cpp index 08a20b284..c430ad801 100644 --- a/scripts/level8.cpp +++ b/scripts/level8.cpp @@ -127,312 +127,312 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10FD : public BaseScript { +class CustomObjectScript_10FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0839 : public BaseScript { +class CustomObjectScript_0839 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0838 : public BaseScript { +class CustomObjectScript_0838 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3026 : public BaseScript { +class CustomObjectScript_3026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0901 : public BaseScript { +class CustomObjectScript_0901 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0900 : public BaseScript { +class CustomObjectScript_0900 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08FF : public BaseScript { +class CustomObjectScript_08FF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_20FE : public BaseScript { +class CustomObjectScript_20FE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09E3 : public BaseScript { +class CustomObjectScript_09E3 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FF : public BaseScript { +class CustomObjectScript_09FF final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1904 : public BaseScript { +class CustomObjectScript_1904 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08C1 : public BaseScript { +class CustomObjectScript_08C1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090F : public BaseScript { +class CustomObjectScript_090F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090E : public BaseScript { +class CustomObjectScript_090E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0910 : public BaseScript { +class CustomObjectScript_0910 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090C : public BaseScript { +class CustomObjectScript_090C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090B : public BaseScript { +class CustomObjectScript_090B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090A : public BaseScript { +class CustomObjectScript_090A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2853 : public BaseScript { +class CustomObjectScript_2853 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_090D : public BaseScript { +class CustomObjectScript_090D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19E2 : public BaseScript { +class CustomObjectScript_19E2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FB : public BaseScript { +class CustomObjectScript_09FB final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FC : public BaseScript { +class CustomObjectScript_09FC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09FD : public BaseScript { +class CustomObjectScript_09FD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0845 : public BaseScript { +class CustomObjectScript_0845 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0846 : public BaseScript { +class CustomObjectScript_0846 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0844 : public BaseScript { +class CustomObjectScript_0844 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0849 : public BaseScript { +class CustomObjectScript_0849 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0848 : public BaseScript { +class CustomObjectScript_0848 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0847 : public BaseScript { +class CustomObjectScript_0847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084A : public BaseScript { +class CustomObjectScript_084A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084D : public BaseScript { +class CustomObjectScript_084D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084C : public BaseScript { +class CustomObjectScript_084C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084B : public BaseScript { +class CustomObjectScript_084B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1088 : public BaseScript { +class CustomObjectScript_1088 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/levelS2.cpp b/scripts/levelS2.cpp index 1e59e6c9b..71c574cb6 100644 --- a/scripts/levelS2.cpp +++ b/scripts/levelS2.cpp @@ -199,672 +199,672 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0821 : public BaseScript { +class CustomObjectScript_0821 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0820 : public BaseScript { +class CustomObjectScript_0820 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_181E : public BaseScript { +class CustomObjectScript_181E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_081F : public BaseScript { +class CustomObjectScript_081F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0814 : public BaseScript { +class CustomObjectScript_0814 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0815 : public BaseScript { +class CustomObjectScript_0815 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0816 : public BaseScript { +class CustomObjectScript_0816 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0818 : public BaseScript { +class CustomObjectScript_0818 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0819 : public BaseScript { +class CustomObjectScript_0819 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0817 : public BaseScript { +class CustomObjectScript_0817 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1024 : public BaseScript { +class CustomObjectScript_1024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0826 : public BaseScript { +class CustomObjectScript_0826 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0828 : public BaseScript { +class CustomObjectScript_0828 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0827 : public BaseScript { +class CustomObjectScript_0827 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_086A : public BaseScript { +class CustomObjectScript_086A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_086B : public BaseScript { +class CustomObjectScript_086B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0829 : public BaseScript { +class CustomObjectScript_0829 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_08C4 : public BaseScript { +class CustomObjectScript_08C4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10CE : public BaseScript { +class CustomObjectScript_10CE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0809 : public BaseScript { +class CustomObjectScript_0809 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0808 : public BaseScript { +class CustomObjectScript_0808 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1007 : public BaseScript { +class CustomObjectScript_1007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1006 : public BaseScript { +class CustomObjectScript_1006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0805 : public BaseScript { +class CustomObjectScript_0805 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1004 : public BaseScript { +class CustomObjectScript_1004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1003 : public BaseScript { +class CustomObjectScript_1003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_100E : public BaseScript { +class CustomObjectScript_100E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0845 : public BaseScript { +class CustomObjectScript_0845 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0844 : public BaseScript { +class CustomObjectScript_0844 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0843 : public BaseScript { +class CustomObjectScript_0843 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0842 : public BaseScript { +class CustomObjectScript_0842 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0841 : public BaseScript { +class CustomObjectScript_0841 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0840 : public BaseScript { +class CustomObjectScript_0840 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083F : public BaseScript { +class CustomObjectScript_083F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083E : public BaseScript { +class CustomObjectScript_083E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083D : public BaseScript { +class CustomObjectScript_083D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083C : public BaseScript { +class CustomObjectScript_083C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083B : public BaseScript { +class CustomObjectScript_083B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_083A : public BaseScript { +class CustomObjectScript_083A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0851 : public BaseScript { +class CustomObjectScript_0851 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0850 : public BaseScript { +class CustomObjectScript_0850 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084F : public BaseScript { +class CustomObjectScript_084F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084E : public BaseScript { +class CustomObjectScript_084E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084D : public BaseScript { +class CustomObjectScript_084D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084C : public BaseScript { +class CustomObjectScript_084C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084B : public BaseScript { +class CustomObjectScript_084B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_084A : public BaseScript { +class CustomObjectScript_084A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0849 : public BaseScript { +class CustomObjectScript_0849 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0848 : public BaseScript { +class CustomObjectScript_0848 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0847 : public BaseScript { +class CustomObjectScript_0847 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0846 : public BaseScript { +class CustomObjectScript_0846 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085D : public BaseScript { +class CustomObjectScript_085D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085C : public BaseScript { +class CustomObjectScript_085C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085B : public BaseScript { +class CustomObjectScript_085B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085A : public BaseScript { +class CustomObjectScript_085A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0859 : public BaseScript { +class CustomObjectScript_0859 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0858 : public BaseScript { +class CustomObjectScript_0858 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0857 : public BaseScript { +class CustomObjectScript_0857 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0856 : public BaseScript { +class CustomObjectScript_0856 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0855 : public BaseScript { +class CustomObjectScript_0855 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0854 : public BaseScript { +class CustomObjectScript_0854 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0853 : public BaseScript { +class CustomObjectScript_0853 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0852 : public BaseScript { +class CustomObjectScript_0852 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0869 : public BaseScript { +class CustomObjectScript_0869 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0868 : public BaseScript { +class CustomObjectScript_0868 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0867 : public BaseScript { +class CustomObjectScript_0867 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0866 : public BaseScript { +class CustomObjectScript_0866 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0865 : public BaseScript { +class CustomObjectScript_0865 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0864 : public BaseScript { +class CustomObjectScript_0864 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0863 : public BaseScript { +class CustomObjectScript_0863 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0862 : public BaseScript { +class CustomObjectScript_0862 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0861 : public BaseScript { +class CustomObjectScript_0861 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0860 : public BaseScript { +class CustomObjectScript_0860 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085F : public BaseScript { +class CustomObjectScript_085F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_085E : public BaseScript { +class CustomObjectScript_085E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003B : public BaseScript { +class TriggerScript_003B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003A : public BaseScript { +class TriggerScript_003A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0035 : public BaseScript { +class TriggerScript_0035 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0034 : public BaseScript { +class TriggerScript_0034 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0031 : public BaseScript { +class TriggerScript_0031 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002F : public BaseScript { +class TriggerScript_002F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002E : public BaseScript { +class TriggerScript_002E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0023 : public BaseScript { +class TriggerScript_0023 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0022 : public BaseScript { +class TriggerScript_0022 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0021 : public BaseScript { +class TriggerScript_0021 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0020 : public BaseScript { +class TriggerScript_0020 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001B : public BaseScript { +class TriggerScript_001B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001A : public BaseScript { +class TriggerScript_001A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0017 : public BaseScript { +class TriggerScript_0017 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0016 : public BaseScript { +class TriggerScript_0016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0015 : public BaseScript { +class TriggerScript_0015 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0014 : public BaseScript { +class TriggerScript_0014 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0013 : public BaseScript { +class TriggerScript_0013 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0012 : public BaseScript { +class TriggerScript_0012 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0011 : public BaseScript { +class TriggerScript_0011 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0005 : public BaseScript { +class TriggerScript_0005 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0004 : public BaseScript { +class TriggerScript_0004 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0001 : public BaseScript { +class TriggerScript_0001 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003D : public BaseScript { +class TriggerScript_003D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_003C : public BaseScript { +class TriggerScript_003C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0039 : public BaseScript { +class TriggerScript_0039 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0038 : public BaseScript { +class TriggerScript_0038 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0037 : public BaseScript { +class TriggerScript_0037 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0036 : public BaseScript { +class TriggerScript_0036 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0033 : public BaseScript { +class TriggerScript_0033 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0032 : public BaseScript { +class TriggerScript_0032 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0030 : public BaseScript { +class TriggerScript_0030 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_002C : public BaseScript { +class TriggerScript_002C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0027 : public BaseScript { +class TriggerScript_0027 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0026 : public BaseScript { +class TriggerScript_0026 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0025 : public BaseScript { +class TriggerScript_0025 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0024 : public BaseScript { +class TriggerScript_0024 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001F : public BaseScript { +class TriggerScript_001F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001E : public BaseScript { +class TriggerScript_001E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001D : public BaseScript { +class TriggerScript_001D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_001C : public BaseScript { +class TriggerScript_001C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0019 : public BaseScript { +class TriggerScript_0019 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0018 : public BaseScript { +class TriggerScript_0018 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0006 : public BaseScript { +class TriggerScript_0006 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0003 : public BaseScript { +class TriggerScript_0003 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0002 : public BaseScript { +class TriggerScript_0002 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0040 : public BaseScript { +class TriggerScript_0040 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/merc5.cpp b/scripts/merc5.cpp index 5be250c35..6d53b0e03 100644 --- a/scripts/merc5.cpp +++ b/scripts/merc5.cpp @@ -112,237 +112,237 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C4 : public BaseScript { +class CustomObjectScript_11C4 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1088 : public BaseScript { +class CustomObjectScript_1088 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C6 : public BaseScript { +class CustomObjectScript_09C6 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_11C5 : public BaseScript { +class CustomObjectScript_11C5 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C7 : public BaseScript { +class CustomObjectScript_09C7 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_182E : public BaseScript { +class CustomObjectScript_182E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A05 : public BaseScript { +class CustomObjectScript_0A05 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A04 : public BaseScript { +class CustomObjectScript_0A04 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A03 : public BaseScript { +class CustomObjectScript_0A03 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1A02 : public BaseScript { +class CustomObjectScript_1A02 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1033 : public BaseScript { +class CustomObjectScript_1033 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1200 : public BaseScript { +class CustomObjectScript_1200 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1036 : public BaseScript { +class CustomObjectScript_1036 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1035 : public BaseScript { +class CustomObjectScript_1035 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_3032 : public BaseScript { +class CustomObjectScript_3032 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1830 : public BaseScript { +class CustomObjectScript_1830 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_28A2 : public BaseScript { +class CustomObjectScript_28A2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0A06 : public BaseScript { +class CustomObjectScript_0A06 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_2885 : public BaseScript { +class CustomObjectScript_2885 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_107E : public BaseScript { +class CustomObjectScript_107E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1185 : public BaseScript { +class CustomObjectScript_1185 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21B2 : public BaseScript { +class CustomObjectScript_21B2 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DE : public BaseScript { +class CustomObjectScript_09DE final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DD : public BaseScript { +class CustomObjectScript_09DD final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09DC : public BaseScript { +class CustomObjectScript_09DC final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_21DA : public BaseScript { +class CustomObjectScript_21DA final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0899 : public BaseScript { +class CustomObjectScript_0899 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_089A : public BaseScript { +class CustomObjectScript_089A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_089B : public BaseScript { +class CustomObjectScript_089B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1098 : public BaseScript { +class CustomObjectScript_1098 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09A1 : public BaseScript { +class CustomObjectScript_09A1 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_19A0 : public BaseScript { +class CustomObjectScript_19A0 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_09C9 : public BaseScript { +class CustomObjectScript_09C9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1007 : public BaseScript { +class CustomObjectScript_1007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_1016 : public BaseScript { +class CustomObjectScript_1016 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000F : public BaseScript { +class TriggerScript_000F final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0000 : public BaseScript { +class TriggerScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0010 : public BaseScript { +class TriggerScript_0010 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000E : public BaseScript { +class TriggerScript_000E final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000D : public BaseScript { +class TriggerScript_000D final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000B : public BaseScript { +class TriggerScript_000B final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0009 : public BaseScript { +class TriggerScript_0009 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000C : public BaseScript { +class TriggerScript_000C final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_000A : public BaseScript { +class TriggerScript_000A final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0007 : public BaseScript { +class TriggerScript_0007 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class TriggerScript_0008 : public BaseScript { +class TriggerScript_0008 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/myPowerHouse.cpp b/scripts/myPowerHouse.cpp index dcf811aa0..94d1d3129 100644 --- a/scripts/myPowerHouse.cpp +++ b/scripts/myPowerHouse.cpp @@ -66,12 +66,12 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0827 : public BaseScript { +class CustomObjectScript_0827 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/orbital.cpp b/scripts/orbital.cpp index 406b5be7f..86f8394c1 100644 --- a/scripts/orbital.cpp +++ b/scripts/orbital.cpp @@ -67,17 +67,17 @@ class BaseScript { virtual int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class LevelScript_0000 : public BaseScript { +class LevelScript_0000 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_0903 : public BaseScript { +class CustomObjectScript_0903 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; -class CustomObjectScript_10F9 : public BaseScript { +class CustomObjectScript_10F9 final : public BaseScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/scripts/testscript.cpp b/scripts/testscript.cpp index b3caa8b5a..8d1fa7242 100644 --- a/scripts/testscript.cpp +++ b/scripts/testscript.cpp @@ -69,7 +69,7 @@ struct tShieldOrbInfo { //------------------ // Shield orb script //------------------ -class ShieldOrb : public BaseObjScript { +class ShieldOrb final : public BaseObjScript { public: ShieldOrb() { info = NULL; } int16_t CallEvent(int event, tOSIRISEventInfo *data); @@ -81,7 +81,7 @@ class ShieldOrb : public BaseObjScript { //------------------ // Energy orb script //------------------ -class EnergyOrb : public BaseObjScript { +class EnergyOrb final : public BaseObjScript { public: int16_t CallEvent(int event, tOSIRISEventInfo *data); }; diff --git a/sndlib/sdlsound.h b/sndlib/sdlsound.h index 2ec026682..3cb727af4 100644 --- a/sndlib/sdlsound.h +++ b/sndlib/sdlsound.h @@ -36,7 +36,7 @@ class emulated_listener { vector velocity; }; -class lnxsound : public llsSystem { +class lnxsound final : public llsSystem { // Public functions public: lnxsound(); diff --git a/ui/ui.h b/ui/ui.h index a6d891703..d96651880 100644 --- a/ui/ui.h +++ b/ui/ui.h @@ -496,7 +496,7 @@ class UIGadget : public UIObject { // This is simply a region within the parent window that when clicked on // or key pressed, does something. -class UIHotspot : public UIGadget { +class UIHotspot final : public UIGadget { UIItem *m_ItemOff, *m_ItemOn; // off and on states items. UIItem *m_ItemCur; // current item. @@ -686,7 +686,7 @@ class UIStatic : public UIGadget { // UIText // This is a simple text. -class UIText : public UIStatic { +class UIText final : public UIStatic { public: void Create(UIWindow *parent, UITextItem *text, int x, int y, int flags = 0); @@ -699,7 +699,7 @@ class UIText : public UIStatic { // UIProgress // Progress Bar -class UIProgress : public UIStatic { +class UIProgress final : public UIStatic { public: void Create(UIWindow *parent, int x, int y, int w, int h, int flags = 0); void Update(float progress); // Call with a value from 0-1.0 to specify progress @@ -716,7 +716,7 @@ class UIProgress : public UIStatic { // UIGroup // Draws a group box on to the window -class UIGroup : public UIStatic { +class UIGroup final : public UIStatic { public: UIGroup(); ~UIGroup(); @@ -997,7 +997,7 @@ class UIComboBox : public UIGadget { // UIConsoleGadget // a console that's a gadget within a window -class UIConsoleGadget : public UIGadget { +class UIConsoleGadget final : public UIGadget { int m_ConsoleFont; // standard font for text in console ddgr_color *m_ColorRows; // color per row. char *m_ConsoleBuffer; // text buffer of console. @@ -1143,7 +1143,7 @@ class UIWindow : public UIObject { // Special windows // titled window (functions as a standard dialog box.), without modality though. -class UITitledWindow : public UIWindow { +class UITitledWindow final : public UIWindow { UITextItem m_Title; // title of window int m_CaptionColor; // caption's color. int m_BorderThickness; // border thickness. @@ -1180,7 +1180,7 @@ class UITitledWindow : public UIWindow { // UIConsole // should display a simple console window where anyone can dump text into -class UIConsole : public UIWindow { +class UIConsole final : public UIWindow { UIConsoleGadget m_Console; protected: diff --git a/ui/uires.h b/ui/uires.h index 9d266fb4c..69d5f866c 100644 --- a/ui/uires.h +++ b/ui/uires.h @@ -180,7 +180,7 @@ class UITextItem : public UIItem { #define UISNAZZYTEXTF_BLINKING 0x1 #define UISNAZZYTEXTF_RESERVED 0xffff0000 -class UISnazzyTextItem : public UITextItem { +class UISnazzyTextItem final : public UITextItem { unsigned m_flags; union { @@ -213,7 +213,7 @@ class UISnazzyTextItem : public UITextItem { // used by user interface system, contains information about how to render // text. allows for alpha, color and different fonts. -class UIBitmapItem : public UIItem { +class UIBitmapItem final : public UIItem { bool m_IsValid; bool m_IsChunked; // is this a chunked bitmap? @@ -284,7 +284,7 @@ class UIBitmapItem : public UIItem { // UIPrimativeItem // used to render simple 2d backgrounds. -class UIPrimativeItem : public UIItem { +class UIPrimativeItem final : public UIItem { ddgr_color color; uint8_t alpha;