OpenTTD Source  20240919-master-gdf0233f4c2
squirrel_std.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #include "../stdafx.h"
11 #include <squirrel.h>
12 #include <sqstdmath.h>
13 #include "../debug.h"
14 #include "squirrel_std.hpp"
15 #include "../core/math_func.hpp"
16 #include "../string_func.h"
17 
18 #include "../safeguards.h"
19 
20 
21 SQInteger SquirrelStd::min(HSQUIRRELVM vm)
22 {
23  SQInteger tmp1, tmp2;
24 
25  sq_getinteger(vm, 2, &tmp1);
26  sq_getinteger(vm, 3, &tmp2);
27  sq_pushinteger(vm, std::min(tmp1, tmp2));
28  return 1;
29 }
30 
31 SQInteger SquirrelStd::max(HSQUIRRELVM vm)
32 {
33  SQInteger tmp1, tmp2;
34 
35  sq_getinteger(vm, 2, &tmp1);
36  sq_getinteger(vm, 3, &tmp2);
37  sq_pushinteger(vm, std::max(tmp1, tmp2));
38  return 1;
39 }
40 
41 SQInteger SquirrelStd::require(HSQUIRRELVM vm)
42 {
43  SQInteger top = sq_gettop(vm);
44  const SQChar *filename;
45 
46  sq_getstring(vm, 2, &filename);
47 
48  /* Get the script-name of the current file, so we can work relative from it */
49  SQStackInfos si;
50  sq_stackinfos(vm, 1, &si);
51  if (si.source == nullptr) {
52  Debug(misc, 0, "[squirrel] Couldn't detect the script-name of the 'require'-caller; this should never happen!");
53  return SQ_ERROR;
54  }
55 
56  /* Keep the dir, remove the rest */
57  std::string path = si.source;
58  auto p = path.find_last_of(PATHSEPCHAR);
59  /* Keep the PATHSEPCHAR there, remove the rest */
60  if (p != std::string::npos) path.erase(p + 1);
61  path += filename;
62 #if (PATHSEPCHAR != '/')
63  std::transform(path.begin(), path.end(), path.begin(), [](char &c) { return c == '/' ? PATHSEPCHAR : c; });
64 #endif
65 
66  Squirrel *engine = (Squirrel *)sq_getforeignptr(vm);
67  bool ret = engine->LoadScript(vm, path);
68 
69  /* Reset the top, so the stack stays correct */
70  sq_settop(vm, top);
71 
72  return ret ? 0 : SQ_ERROR;
73 }
74 
75 SQInteger SquirrelStd::notifyallexceptions(HSQUIRRELVM vm)
76 {
77  SQBool b;
78 
79  if (sq_gettop(vm) >= 1) {
80  if (SQ_SUCCEEDED(sq_getbool(vm, -1, &b))) {
81  sq_notifyallexceptions(vm, b);
82  return 0;
83  }
84  }
85 
86  return SQ_ERROR;
87 }
88 
90 {
91  /* We don't use squirrel_helper here, as we want to register to the global
92  * scope and not to a class. */
93  engine->AddMethod("require", &SquirrelStd::require, 2, ".s");
94  engine->AddMethod("notifyallexceptions", &SquirrelStd::notifyallexceptions, 2, ".b");
95 }
96 
98 {
99  /* We don't use squirrel_helper here, as we want to register to the global
100  * scope and not to a class. */
101  engine->AddMethod("min", &SquirrelStd::min, 3, ".ii");
102  engine->AddMethod("max", &SquirrelStd::max, 3, ".ii");
103 
104  sqstd_register_mathlib(engine->GetVM());
105 }
SquirrelStd::max
static SQInteger max(HSQUIRRELVM vm)
Get the highest of two integers.
Definition: squirrel_std.cpp:31
Squirrel::GetVM
HSQUIRRELVM GetVM()
Get the squirrel VM.
Definition: squirrel.hpp:80
Debug
#define Debug(category, level, format_string,...)
Ouptut a line of debugging information.
Definition: debug.h:37
SquirrelStd::min
static SQInteger min(HSQUIRRELVM vm)
Get the lowest of two integers.
Definition: squirrel_std.cpp:21
Squirrel
Definition: squirrel.hpp:23
SquirrelStd::notifyallexceptions
static SQInteger notifyallexceptions(HSQUIRRELVM vm)
Enable/disable stack trace showing for handled exceptions.
Definition: squirrel_std.cpp:75
squirrel_register_global_std
void squirrel_register_global_std(Squirrel *engine)
Register all standard functions that are available on first startup.
Definition: squirrel_std.cpp:89
squirrel_register_std
void squirrel_register_std(Squirrel *engine)
Register all standard functions we want to give to a script.
Definition: squirrel_std.cpp:97
Squirrel::LoadScript
bool LoadScript(const std::string &script)
Load a script.
Definition: squirrel.cpp:723
SquirrelStd::require
static SQInteger require(HSQUIRRELVM vm)
Load another file on runtime.
Definition: squirrel_std.cpp:41
Squirrel::AddMethod
void AddMethod(const char *method_name, SQFUNCTION proc, uint nparam=0, const char *params=nullptr, void *userdata=nullptr, int size=0)
Adds a function to the stack.
Definition: squirrel.cpp:278
squirrel_std.hpp