explicitly pass CsState to all callbacks (might be a different thread eventually)

master
Daniel Kolesa 2016-09-11 23:13:39 +02:00
parent ef77d8f247
commit 083f905913
7 changed files with 368 additions and 210 deletions

View File

@ -190,7 +190,7 @@ private:
int p_index = -1; int p_index = -1;
}; };
using CsVarCb = ostd::Function<void(CsIdent &)>; using CsVarCb = ostd::Function<void(CsState &, CsIdent &)>;
struct OSTD_EXPORT CsVar: CsIdent { struct OSTD_EXPORT CsVar: CsIdent {
friend struct CsState; friend struct CsState;
@ -201,9 +201,9 @@ protected:
private: private:
CsVarCb cb_var; CsVarCb cb_var;
void changed() { void changed(CsState &cs) {
if (cb_var) { if (cb_var) {
cb_var(*this); cb_var(cs, *this);
} }
} }
}; };
@ -281,7 +281,7 @@ private:
CsValue p_val; CsValue p_val;
}; };
using CsCommandCb = ostd::Function<void(CsValueRange, CsValue &)>; using CsCommandCb = ostd::Function<void(CsState &, CsValueRange, CsValue &)>;
struct CsCommand: CsIdent { struct CsCommand: CsIdent {
friend struct CsState; friend struct CsState;
@ -333,8 +333,9 @@ private:
bool p_gap; bool p_gap;
}; };
using CsHookCb = ostd::Function<void()>; using CsHookCb = ostd::Function<void(CsState &)>;
using CsPanicCb = ostd::Function<void(ostd::ConstCharRange, CsStackState)>; using CsPanicCb =
ostd::Function<void(CsState &, ostd::ConstCharRange, CsStackState)>;
template<typename T> template<typename T>
struct CsAllocator { struct CsAllocator {

View File

@ -7,8 +7,10 @@
namespace cscript { namespace cscript {
struct CsCommandInternal { struct CsCommandInternal {
static void call(CsCommand *c, CsValueRange args, CsValue &ret) { static void call(
c->p_cb_cftv(args, ret); CsState &cs, CsCommand *c, CsValueRange args, CsValue &ret
) {
c->p_cb_cftv(cs, args, ret);
} }
static bool has_cb(CsIdent *id) { static bool has_cb(CsIdent *id) {
@ -402,12 +404,12 @@ static inline void callcommand(
cscript::util::tvals_concat(buf, ostd::iter(args, i), " "); cscript::util::tvals_concat(buf, ostd::iter(args, i), " ");
CsValue tv; CsValue tv;
tv.set_str(ostd::move(buf.get())); tv.set_str(ostd::move(buf.get()));
CsCommandInternal::call(id, CsValueRange(&tv, 1), res); CsCommandInternal::call(cs, id, CsValueRange(&tv, 1), res);
return; return;
} }
case 'V': case 'V':
i = ostd::max(i + 1, numargs); i = ostd::max(i + 1, numargs);
CsCommandInternal::call(id, ostd::iter(args, i), res); CsCommandInternal::call(cs, id, ostd::iter(args, i), res);
return; return;
case '1': case '1':
case '2': case '2':
@ -421,7 +423,7 @@ static inline void callcommand(
} }
} }
++i; ++i;
CsCommandInternal::call(id, CsValueRange(args, i), res); CsCommandInternal::call(cs, id, CsValueRange(args, i), res);
} }
static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result); static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result);
@ -546,7 +548,7 @@ static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result) {
CsValue args[MaxArguments + MaxResults]; CsValue args[MaxArguments + MaxResults];
auto &chook = cs.get_call_hook(); auto &chook = cs.get_call_hook();
if (chook) { if (chook) {
chook(); chook(cs);
} }
for (;;) { for (;;) {
ostd::Uint32 op = *code++; ostd::Uint32 op = *code++;
@ -1270,7 +1272,8 @@ static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result) {
int offset = numargs - id->get_num_args(); int offset = numargs - id->get_num_args();
result.force_null(); result.force_null();
CsCommandInternal::call( CsCommandInternal::call(
id, CsValueRange(args + offset, id->get_num_args()), result cs, id, CsValueRange(args + offset, id->get_num_args()),
result
); );
force_arg(result, op & CsCodeRetMask); force_arg(result, op & CsCodeRetMask);
numargs = offset; numargs = offset;
@ -1285,7 +1288,7 @@ static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result) {
int callargs = (op >> 8) & 0x1F, offset = numargs - callargs; int callargs = (op >> 8) & 0x1F, offset = numargs - callargs;
result.force_null(); result.force_null();
CsCommandInternal::call( CsCommandInternal::call(
id, ostd::iter(&args[offset], callargs), result cs, id, ostd::iter(&args[offset], callargs), result
); );
force_arg(result, op & CsCodeRetMask); force_arg(result, op & CsCodeRetMask);
numargs = offset; numargs = offset;
@ -1305,7 +1308,7 @@ static ostd::Uint32 *runcode(CsState &cs, ostd::Uint32 *code, CsValue &result) {
); );
CsValue tv; CsValue tv;
tv.set_str(ostd::move(buf.get())); tv.set_str(ostd::move(buf.get()));
CsCommandInternal::call(id, CsValueRange(&tv, 1), result); CsCommandInternal::call(cs, id, CsValueRange(&tv, 1), result);
} }
force_arg(result, op & CsCodeRetMask); force_arg(result, op & CsCodeRetMask);
numargs = offset; numargs = offset;

View File

@ -256,8 +256,8 @@ CsState::CsState():
p_callhook(), p_panicfunc(), p_out(&ostd::out), p_err(&ostd::err) p_callhook(), p_panicfunc(), p_out(&ostd::out), p_err(&ostd::err)
{ {
/* default panic func */ /* default panic func */
p_panicfunc = [this](ostd::ConstCharRange v, CsStackState) { p_panicfunc = [](CsState &cs, ostd::ConstCharRange v, CsStackState) {
get_err().writefln( cs.get_err().writefln(
"PANIC: unprotected error in call to CubeScript (%s)", v "PANIC: unprotected error in call to CubeScript (%s)", v
); );
}; };
@ -276,34 +276,38 @@ CsState::CsState():
id = new_ivar("dbgalias", 0, 1000, 4); id = new_ivar("dbgalias", 0, 1000, 4);
assert(id->get_index() == DbgaliasIdx); assert(id->get_index() == DbgaliasIdx);
new_command("do", "e", [this](CsValueRange args, CsValue &res) { new_command("do", "e", [](CsState &cs, CsValueRange args, CsValue &res) {
run(args[0].get_code(), res); cs.run(args[0].get_code(), res);
})->p_type = CsIdDo; })->p_type = CsIdDo;
new_command("doargs", "e", [this](CsValueRange args, CsValue &res) { new_command("doargs", "e", [](CsState &cs, CsValueRange args, CsValue &res) {
cs_do_args(*this, [&]() { run(args[0].get_code(), res); }); cs_do_args(cs, [&cs, &res, &args]() {
cs.run(args[0].get_code(), res);
});
})->p_type = CsIdDoArgs; })->p_type = CsIdDoArgs;
new_command("if", "tee", [this](CsValueRange args, CsValue &res) { new_command("if", "tee", [](
run((args[0].get_bool() ? args[1] : args[2]).get_code(), res); CsState &cs, CsValueRange args, CsValue &res
) {
cs.run((args[0].get_bool() ? args[1] : args[2]).get_code(), res);
})->p_type = CsIdIf; })->p_type = CsIdIf;
new_command("result", "T", [](CsValueRange args, CsValue &res) { new_command("result", "T", [](CsState &, CsValueRange args, CsValue &res) {
res = ostd::move(args[0]); res = ostd::move(args[0]);
})->p_type = CsIdResult; })->p_type = CsIdResult;
new_command("!", "t", [](CsValueRange args, CsValue &res) { new_command("!", "t", [](CsState &, CsValueRange args, CsValue &res) {
res.set_int(!args[0].get_bool()); res.set_int(!args[0].get_bool());
})->p_type = CsIdNot; })->p_type = CsIdNot;
new_command("&&", "E1V", [this](CsValueRange args, CsValue &res) { new_command("&&", "E1V", [](CsState &cs, CsValueRange args, CsValue &res) {
if (args.empty()) { if (args.empty()) {
res.set_int(1); res.set_int(1);
} else { } else {
for (ostd::Size i = 0; i < args.size(); ++i) { for (ostd::Size i = 0; i < args.size(); ++i) {
CsBytecode *code = args[i].get_code(); CsBytecode *code = args[i].get_code();
if (code) { if (code) {
run(code, res); cs.run(code, res);
} else { } else {
res = ostd::move(args[i]); res = ostd::move(args[i]);
} }
@ -314,14 +318,14 @@ CsState::CsState():
} }
})->p_type = CsIdAnd; })->p_type = CsIdAnd;
new_command("||", "E1V", [this](CsValueRange args, CsValue &res) { new_command("||", "E1V", [](CsState &cs, CsValueRange args, CsValue &res) {
if (args.empty()) { if (args.empty()) {
res.set_int(0); res.set_int(0);
} else { } else {
for (ostd::Size i = 0; i < args.size(); ++i) { for (ostd::Size i = 0; i < args.size(); ++i) {
CsBytecode *code = args[i].get_code(); CsBytecode *code = args[i].get_code();
if (code) { if (code) {
run(code, res); cs.run(code, res);
} else { } else {
res = ostd::move(args[i]); res = ostd::move(args[i]);
} }
@ -438,7 +442,7 @@ void CsState::error(ostd::ConstCharRange msg) {
throw CsErrorException(msg, cs_save_stack(*this)); throw CsErrorException(msg, cs_save_stack(*this));
} else { } else {
if (p_panicfunc) { if (p_panicfunc) {
p_panicfunc(msg, cs_save_stack(*this)); p_panicfunc(*this, msg, cs_save_stack(*this));
} }
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
@ -458,19 +462,19 @@ void CsState::clear_override(CsIdent &id) {
case CsIdentType::Ivar: { case CsIdentType::Ivar: {
CsIvar &iv = static_cast<CsIvar &>(id); CsIvar &iv = static_cast<CsIvar &>(id);
iv.set_value(iv.p_overrideval); iv.set_value(iv.p_overrideval);
iv.changed(); iv.changed(*this);
break; break;
} }
case CsIdentType::Fvar: { case CsIdentType::Fvar: {
CsFvar &fv = static_cast<CsFvar &>(id); CsFvar &fv = static_cast<CsFvar &>(id);
fv.set_value(fv.p_overrideval); fv.set_value(fv.p_overrideval);
fv.changed(); fv.changed(*this);
break; break;
} }
case CsIdentType::Svar: { case CsIdentType::Svar: {
CsSvar &sv = static_cast<CsSvar &>(id); CsSvar &sv = static_cast<CsSvar &>(id);
sv.set_value(sv.p_overrideval); sv.set_value(sv.p_overrideval);
sv.changed(); sv.changed(*this);
break; break;
} }
default: default:
@ -562,7 +566,7 @@ bool CsState::reset_var(ostd::ConstCharRange name) {
void CsState::touch_var(ostd::ConstCharRange name) { void CsState::touch_var(ostd::ConstCharRange name) {
CsIdent *id = get_ident(name); CsIdent *id = get_ident(name);
if (id && id->is_var()) { if (id && id->is_var()) {
static_cast<CsVar *>(id)->changed(); static_cast<CsVar *>(id)->changed(*this);
} }
} }
@ -760,7 +764,7 @@ void CsState::set_var_int(
iv->set_value(v); iv->set_value(v);
} }
if (dofunc) { if (dofunc) {
iv->changed(); iv->changed(*this);
} }
} }
@ -785,7 +789,7 @@ void CsState::set_var_float(
fv->set_value(v); fv->set_value(v);
} }
if (dofunc) { if (dofunc) {
fv->changed(); fv->changed(*this);
} }
} }
@ -806,7 +810,7 @@ void CsState::set_var_str(
} }
sv->set_value(v); sv->set_value(v);
if (dofunc) { if (dofunc) {
sv->changed(); sv->changed(*this);
} }
} }
@ -916,7 +920,7 @@ void CsState::set_var_int_checked(CsIvar *iv, CsInt v) {
v = cs_clamp_var(*this, iv, v); v = cs_clamp_var(*this, iv, v);
} }
iv->set_value(v); iv->set_value(v);
iv->changed(); iv->changed(*this);
} }
void CsState::set_var_int_checked(CsIvar *iv, CsValueRange args) { void CsState::set_var_int_checked(CsIvar *iv, CsValueRange args) {
@ -961,7 +965,7 @@ void CsState::set_var_float_checked(CsFvar *fv, CsFloat v) {
v = cs_clamp_fvar(*this, fv, v); v = cs_clamp_fvar(*this, fv, v);
} }
fv->set_value(v); fv->set_value(v);
fv->changed(); fv->changed(*this);
} }
void CsState::set_var_str_checked(CsSvar *sv, ostd::ConstCharRange v) { void CsState::set_var_str_checked(CsSvar *sv, ostd::ConstCharRange v) {
@ -977,7 +981,7 @@ void CsState::set_var_str_checked(CsSvar *sv, ostd::ConstCharRange v) {
return; return;
} }
sv->set_value(v); sv->set_value(v);
sv->changed(); sv->changed(*this);
} }
CsCommand *CsState::new_command( CsCommand *CsState::new_command(
@ -1075,12 +1079,14 @@ static inline void cs_loop_conc(
res.set_mstr(ostd::CharRange(s.disown(), len)); res.set_mstr(ostd::CharRange(s.disown(), len));
} }
void cs_init_lib_base(CsState &cs) { void cs_init_lib_base(CsState &gcs) {
cs.new_command("error", "s", [&cs](CsValueRange args, CsValue &) { gcs.new_command("error", "s", [](CsState &cs, CsValueRange args, CsValue &) {
cs.error(args[0].get_strr()); cs.error(args[0].get_strr());
}); });
cs.new_command("pcall", "err", [&cs](CsValueRange args, CsValue &ret) { gcs.new_command("pcall", "err", [](
CsState &cs, CsValueRange args, CsValue &ret
) {
CsAlias *cret = args[1].get_ident()->get_alias(), CsAlias *cret = args[1].get_ident()->get_alias(),
*css = args[2].get_ident()->get_alias(); *css = args[2].get_ident()->get_alias();
if (!cret || !css) { if (!cret || !css) {
@ -1108,7 +1114,7 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("?", "tTT", [](CsValueRange args, CsValue &res) { gcs.new_command("?", "tTT", [](CsState &, CsValueRange args, CsValue &res) {
if (args[0].get_bool()) { if (args[0].get_bool()) {
res = ostd::move(args[1]); res = ostd::move(args[1]);
} else { } else {
@ -1116,7 +1122,9 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("cond", "ee2V", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("cond", "ee2V", [](
CsState &cs, CsValueRange args, CsValue &res
) {
for (ostd::Size i = 0; i < args.size(); i += 2) { for (ostd::Size i = 0; i < args.size(); i += 2) {
if ((i + 1) < args.size()) { if ((i + 1) < args.size()) {
if (cs.run_bool(args[i].get_code())) { if (cs.run_bool(args[i].get_code())) {
@ -1130,7 +1138,9 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("case", "ite2V", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("case", "ite2V", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsInt val = args[0].get_int(); CsInt val = args[0].get_int();
for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) { for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) {
if ( if (
@ -1143,7 +1153,9 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("casef", "fte2V", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("casef", "fte2V", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsFloat val = args[0].get_float(); CsFloat val = args[0].get_float();
for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) { for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) {
if ( if (
@ -1156,7 +1168,9 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("cases", "ste2V", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("cases", "ste2V", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsString val = args[0].get_str(); CsString val = args[0].get_str();
for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) { for (ostd::Size i = 1; (i + 1) < args.size(); i += 2) {
if ( if (
@ -1169,7 +1183,9 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("pushif", "rTe", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("pushif", "rTe", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias() || (idv.get_alias()->get_index() < MaxArguments)) { if (!idv.has_alias() || (idv.get_alias()->get_index() < MaxArguments)) {
return; return;
@ -1181,126 +1197,162 @@ void cs_init_lib_base(CsState &cs) {
} }
}); });
cs.new_command("loop", "rie", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loop", "rie", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), 0, args[1].get_int(), 1, nullptr, cs, *args[0].get_ident(), 0, args[1].get_int(), 1, nullptr,
args[2].get_code() args[2].get_code()
); );
}); });
cs.new_command("loop+", "riie", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loop+", "riie", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1, cs, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1,
nullptr, args[3].get_code() nullptr, args[3].get_code()
); );
}); });
cs.new_command("loop*", "riie", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loop*", "riie", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), 0, args[1].get_int(), args[2].get_int(), cs, *args[0].get_ident(), 0, args[1].get_int(), args[2].get_int(),
nullptr, args[3].get_code() nullptr, args[3].get_code()
); );
}); });
cs.new_command("loop+*", "riiie", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loop+*", "riiie", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), args[1].get_int(), args[3].get_int(), cs, *args[0].get_ident(), args[1].get_int(), args[3].get_int(),
args[2].get_int(), nullptr, args[4].get_code() args[2].get_int(), nullptr, args[4].get_code()
); );
}); });
cs.new_command("loopwhile", "riee", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loopwhile", "riee", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), 0, args[1].get_int(), 1, cs, *args[0].get_ident(), 0, args[1].get_int(), 1,
args[2].get_code(), args[3].get_code() args[2].get_code(), args[3].get_code()
); );
}); });
cs.new_command("loopwhile+", "riiee", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loopwhile+", "riiee", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1, cs, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1,
args[3].get_code(), args[4].get_code() args[3].get_code(), args[4].get_code()
); );
}); });
cs.new_command("loopwhile*", "riiee", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loopwhile*", "riiee", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), 0, args[2].get_int(), args[1].get_int(), cs, *args[0].get_ident(), 0, args[2].get_int(), args[1].get_int(),
args[3].get_code(), args[4].get_code() args[3].get_code(), args[4].get_code()
); );
}); });
cs.new_command("loopwhile+*", "riiiee", [&cs](CsValueRange args, CsValue &) { gcs.new_command("loopwhile+*", "riiiee", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs_do_loop( cs_do_loop(
cs, *args[0].get_ident(), args[1].get_int(), args[3].get_int(), cs, *args[0].get_ident(), args[1].get_int(), args[3].get_int(),
args[2].get_int(), args[4].get_code(), args[5].get_code() args[2].get_int(), args[4].get_code(), args[5].get_code()
); );
}); });
cs.new_command("while", "ee", [&cs](CsValueRange args, CsValue &) { gcs.new_command("while", "ee", [](
CsState &cs, CsValueRange args, CsValue &
) {
CsBytecode *cond = args[0].get_code(), *body = args[1].get_code(); CsBytecode *cond = args[0].get_code(), *body = args[1].get_code();
while (cs.run_bool(cond)) { while (cs.run_bool(cond)) {
cs.run_int(body); cs.run_int(body);
} }
}); });
cs.new_command("loopconcat", "rie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcat", "rie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), 0, args[1].get_int(), 1, cs, res, *args[0].get_ident(), 0, args[1].get_int(), 1,
args[2].get_code(), true args[2].get_code(), true
); );
}); });
cs.new_command("loopconcat+", "riie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcat+", "riie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1, cs, res, *args[0].get_ident(), args[1].get_int(),
args[3].get_code(), true args[2].get_int(), 1, args[3].get_code(), true
); );
}); });
cs.new_command("loopconcat*", "riie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcat*", "riie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), 0, args[2].get_int(), args[1].get_int(), cs, res, *args[0].get_ident(), 0, args[2].get_int(),
args[3].get_code(), true args[1].get_int(), args[3].get_code(), true
); );
}); });
cs.new_command("loopconcat+*", "riiie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcat+*", "riiie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), args[1].get_int(), args[3].get_int(), cs, res, *args[0].get_ident(), args[1].get_int(),
args[2].get_int(), args[4].get_code(), true args[3].get_int(), args[2].get_int(), args[4].get_code(), true
); );
}); });
cs.new_command("loopconcatword", "rie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcatword", "rie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), 0, args[1].get_int(), 1, cs, res, *args[0].get_ident(), 0, args[1].get_int(), 1,
args[2].get_code(), false args[2].get_code(), false
); );
}); });
cs.new_command("loopconcatword+", "riie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcatword+", "riie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), args[1].get_int(), args[2].get_int(), 1, cs, res, *args[0].get_ident(), args[1].get_int(),
args[3].get_code(), false args[2].get_int(), 1, args[3].get_code(), false
); );
}); });
cs.new_command("loopconcatword*", "riie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcatword*", "riie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), 0, args[2].get_int(), args[1].get_int(), cs, res, *args[0].get_ident(), 0, args[2].get_int(),
args[3].get_code(), false args[1].get_int(), args[3].get_code(), false
); );
}); });
cs.new_command("loopconcatword+*", "riiie", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("loopconcatword+*", "riiie", [](
CsState &cs, CsValueRange args, CsValue &res
) {
cs_loop_conc( cs_loop_conc(
cs, res, *args[0].get_ident(), args[1].get_int(), args[3].get_int(), cs, res, *args[0].get_ident(), args[1].get_int(), args[3].get_int(),
args[2].get_int(), args[4].get_code(), false args[2].get_int(), args[4].get_code(), false
); );
}); });
cs.new_command("push", "rTe", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("push", "rTe", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias() || (idv.get_alias()->get_index() < MaxArguments)) { if (!idv.has_alias() || (idv.get_alias()->get_index() < MaxArguments)) {
return; return;
@ -1310,33 +1362,51 @@ void cs_init_lib_base(CsState &cs) {
cs.run(args[2].get_code(), res); cs.run(args[2].get_code(), res);
}); });
cs.new_command("resetvar", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("resetvar", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_int(cs.reset_var(args[0].get_strr())); res.set_int(cs.reset_var(args[0].get_strr()));
}); });
cs.new_command("alias", "sT", [&cs](CsValueRange args, CsValue &) { gcs.new_command("alias", "sT", [](
CsState &cs, CsValueRange args, CsValue &
) {
cs.set_alias(args[0].get_strr(), ostd::move(args[1])); cs.set_alias(args[0].get_strr(), ostd::move(args[1]));
}); });
cs.new_command("getvarmin", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("getvarmin", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_int(cs.get_var_min_int(args[0].get_strr()).value_or(0)); res.set_int(cs.get_var_min_int(args[0].get_strr()).value_or(0));
}); });
cs.new_command("getvarmax", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("getvarmax", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_int(cs.get_var_max_int(args[0].get_strr()).value_or(0)); res.set_int(cs.get_var_max_int(args[0].get_strr()).value_or(0));
}); });
cs.new_command("getfvarmin", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("getfvarmin", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_float(cs.get_var_min_float(args[0].get_strr()).value_or(0.0f)); res.set_float(cs.get_var_min_float(args[0].get_strr()).value_or(0.0f));
}); });
cs.new_command("getfvarmax", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("getfvarmax", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_float(cs.get_var_max_float(args[0].get_strr()).value_or(0.0f)); res.set_float(cs.get_var_max_float(args[0].get_strr()).value_or(0.0f));
}); });
cs.new_command("identexists", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("identexists", "s", [](
CsState &cs, CsValueRange args, CsValue &res
) {
res.set_int(cs.have_ident(args[0].get_strr())); res.set_int(cs.have_ident(args[0].get_strr()));
}); });
cs.new_command("getalias", "s", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("getalias", "s", [](
res.set_str(ostd::move(cs.get_alias_val(args[0].get_strr()).value_or(""))); CsState &cs, CsValueRange args, CsValue &res
) {
res.set_str(
ostd::move(cs.get_alias_val(args[0].get_strr()).value_or(""))
);
}); });
} }

View File

@ -132,12 +132,12 @@ static inline void cs_list_merge(CsValueRange args, CsValue &res, F cmp) {
static void cs_init_lib_list_sort(CsState &cs); static void cs_init_lib_list_sort(CsState &cs);
void cs_init_lib_list(CsState &cs) { void cs_init_lib_list(CsState &gcs) {
cs.new_command("listlen", "s", [](CsValueRange args, CsValue &res) { gcs.new_command("listlen", "s", [](CsState &, CsValueRange args, CsValue &res) {
res.set_int(CsInt(util::list_length(args[0].get_strr()))); res.set_int(CsInt(util::list_length(args[0].get_strr())));
}); });
cs.new_command("at", "si1V", [](CsValueRange args, CsValue &res) { gcs.new_command("at", "si1V", [](CsState &, CsValueRange args, CsValue &res) {
if (args.empty()) { if (args.empty()) {
return; return;
} }
@ -162,7 +162,9 @@ void cs_init_lib_list(CsState &cs) {
res.set_mstr(er); res.set_mstr(er);
}); });
cs.new_command("sublist", "siiN", [](CsValueRange args, CsValue &res) { gcs.new_command("sublist", "siiN", [](
CsState &, CsValueRange args, CsValue &res
) {
CsInt skip = args[1].get_int(), CsInt skip = args[1].get_int(),
count = args[2].get_int(), count = args[2].get_int(),
numargs = args[2].get_int(); numargs = args[2].get_int();
@ -191,7 +193,9 @@ void cs_init_lib_list(CsState &cs) {
res.set_str(ostd::ConstCharRange(list, qend - list)); res.set_str(ostd::ConstCharRange(list, qend - list));
}); });
cs.new_command("listfind", "rse", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("listfind", "rse", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias()) { if (!idv.has_alias()) {
res.set_int(-1); res.set_int(-1);
@ -211,7 +215,9 @@ void cs_init_lib_list(CsState &cs) {
res.set_int(-1); res.set_int(-1);
}); });
cs.new_command("listassoc", "rse", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("listassoc", "rse", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias()) { if (!idv.has_alias()) {
return; return;
@ -237,21 +243,27 @@ void cs_init_lib_list(CsState &cs) {
} }
}); });
cs.new_command("listfind=", "i", [](CsValueRange args, CsValue &res) { gcs.new_command("listfind=", "i", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_find<CsInt>( cs_list_find<CsInt>(
args, res, [](const util::ListParser &p, CsInt val) { args, res, [](const util::ListParser &p, CsInt val) {
return cs_parse_int(p.item) == val; return cs_parse_int(p.item) == val;
} }
); );
}); });
cs.new_command("listfind=f", "f", [](CsValueRange args, CsValue &res) { gcs.new_command("listfind=f", "f", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_find<CsFloat>( cs_list_find<CsFloat>(
args, res, [](const util::ListParser &p, CsFloat val) { args, res, [](const util::ListParser &p, CsFloat val) {
return cs_parse_float(p.item) == val; return cs_parse_float(p.item) == val;
} }
); );
}); });
cs.new_command("listfind=s", "s", [](CsValueRange args, CsValue &res) { gcs.new_command("listfind=s", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_find<ostd::ConstCharRange>( cs_list_find<ostd::ConstCharRange>(
args, res, [](const util::ListParser &p, ostd::ConstCharRange val) { args, res, [](const util::ListParser &p, ostd::ConstCharRange val) {
return p.item == val; return p.item == val;
@ -259,21 +271,27 @@ void cs_init_lib_list(CsState &cs) {
); );
}); });
cs.new_command("listassoc=", "i", [](CsValueRange args, CsValue &res) { gcs.new_command("listassoc=", "i", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_assoc<CsInt>( cs_list_assoc<CsInt>(
args, res, [](const util::ListParser &p, CsInt val) { args, res, [](const util::ListParser &p, CsInt val) {
return cs_parse_int(p.item) == val; return cs_parse_int(p.item) == val;
} }
); );
}); });
cs.new_command("listassoc=f", "f", [](CsValueRange args, CsValue &res) { gcs.new_command("listassoc=f", "f", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_assoc<CsFloat>( cs_list_assoc<CsFloat>(
args, res, [](const util::ListParser &p, CsFloat val) { args, res, [](const util::ListParser &p, CsFloat val) {
return cs_parse_float(p.item) == val; return cs_parse_float(p.item) == val;
} }
); );
}); });
cs.new_command("listassoc=s", "s", [](CsValueRange args, CsValue &res) { gcs.new_command("listassoc=s", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_assoc<ostd::ConstCharRange>( cs_list_assoc<ostd::ConstCharRange>(
args, res, [](const util::ListParser &p, ostd::ConstCharRange val) { args, res, [](const util::ListParser &p, ostd::ConstCharRange val) {
return p.item == val; return p.item == val;
@ -281,7 +299,9 @@ void cs_init_lib_list(CsState &cs) {
); );
}); });
cs.new_command("looplist", "rse", [&cs](CsValueRange args, CsValue &) { gcs.new_command("looplist", "rse", [](
CsState &cs, CsValueRange args, CsValue &
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias()) { if (!idv.has_alias()) {
return; return;
@ -295,7 +315,9 @@ void cs_init_lib_list(CsState &cs) {
} }
}); });
cs.new_command("looplist2", "rrse", [&cs](CsValueRange args, CsValue &) { gcs.new_command("looplist2", "rrse", [](
CsState &cs, CsValueRange args, CsValue &
) {
CsStackedValue idv1{args[0].get_ident()}, idv2{args[1].get_ident()}; CsStackedValue idv1{args[0].get_ident()}, idv2{args[1].get_ident()};
if (!idv1.has_alias() || !idv2.has_alias()) { if (!idv1.has_alias() || !idv2.has_alias()) {
return; return;
@ -311,7 +333,9 @@ void cs_init_lib_list(CsState &cs) {
} }
}); });
cs.new_command("looplist3", "rrrse", [&cs](CsValueRange args, CsValue &) { gcs.new_command("looplist3", "rrrse", [](
CsState &cs, CsValueRange args, CsValue &
) {
CsStackedValue idv1{args[0].get_ident()}; CsStackedValue idv1{args[0].get_ident()};
CsStackedValue idv2{args[1].get_ident()}; CsStackedValue idv2{args[1].get_ident()};
CsStackedValue idv3{args[2].get_ident()}; CsStackedValue idv3{args[2].get_ident()};
@ -331,8 +355,8 @@ void cs_init_lib_list(CsState &cs) {
} }
}); });
cs.new_command("looplistconcat", "rse", [&cs]( gcs.new_command("looplistconcat", "rse", [](
CsValueRange args, CsValue &res CsState &cs, CsValueRange args, CsValue &res
) { ) {
cs_loop_list_conc( cs_loop_list_conc(
cs, res, args[0].get_ident(), args[1].get_strr(), cs, res, args[0].get_ident(), args[1].get_strr(),
@ -340,8 +364,8 @@ void cs_init_lib_list(CsState &cs) {
); );
}); });
cs.new_command("looplistconcatword", "rse", [&cs]( gcs.new_command("looplistconcatword", "rse", [](
CsValueRange args, CsValue &res CsState &cs, CsValueRange args, CsValue &res
) { ) {
cs_loop_list_conc( cs_loop_list_conc(
cs, res, args[0].get_ident(), args[1].get_strr(), cs, res, args[0].get_ident(), args[1].get_strr(),
@ -349,7 +373,9 @@ void cs_init_lib_list(CsState &cs) {
); );
}); });
cs.new_command("listfilter", "rse", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("listfilter", "rse", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias()) { if (!idv.has_alias()) {
return; return;
@ -373,7 +399,9 @@ void cs_init_lib_list(CsState &cs) {
res.set_mstr(ostd::CharRange(r.disown(), len)); res.set_mstr(ostd::CharRange(r.disown(), len));
}); });
cs.new_command("listcount", "rse", [&cs](CsValueRange args, CsValue &res) { gcs.new_command("listcount", "rse", [](
CsState &cs, CsValueRange args, CsValue &res
) {
CsStackedValue idv{args[0].get_ident()}; CsStackedValue idv{args[0].get_ident()};
if (!idv.has_alias()) { if (!idv.has_alias()) {
return; return;
@ -391,7 +419,9 @@ void cs_init_lib_list(CsState &cs) {
res.set_int(r); res.set_int(r);
}); });
cs.new_command("prettylist", "ss", [](CsValueRange args, CsValue &res) { gcs.new_command("prettylist", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
CsVector<char> buf; CsVector<char> buf;
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
ostd::ConstCharRange conj = args[1].get_strr(); ostd::ConstCharRange conj = args[1].get_strr();
@ -425,23 +455,33 @@ void cs_init_lib_list(CsState &cs) {
res.set_mstr(ostd::CharRange(buf.disown(), slen)); res.set_mstr(ostd::CharRange(buf.disown(), slen));
}); });
cs.new_command("indexof", "ss", [](CsValueRange args, CsValue &res) { gcs.new_command("indexof", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
res.set_int( res.set_int(
cs_list_includes(args[0].get_strr(), args[1].get_strr()) cs_list_includes(args[0].get_strr(), args[1].get_strr())
); );
}); });
cs.new_command("listdel", "ss", [](CsValueRange args, CsValue &res) { gcs.new_command("listdel", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_merge<false, false>(args, res, ostd::Less<int>()); cs_list_merge<false, false>(args, res, ostd::Less<int>());
}); });
cs.new_command("listintersect", "ss", [](CsValueRange args, CsValue &res) { gcs.new_command("listintersect", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_merge<false, false>(args, res, ostd::GreaterEqual<int>()); cs_list_merge<false, false>(args, res, ostd::GreaterEqual<int>());
}); });
cs.new_command("listunion", "ss", [](CsValueRange args, CsValue &res) { gcs.new_command("listunion", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_list_merge<true, true>(args, res, ostd::Less<int>()); cs_list_merge<true, true>(args, res, ostd::Less<int>());
}); });
cs.new_command("listsplice", "ssii", [](CsValueRange args, CsValue &res) { gcs.new_command("listsplice", "ssii", [](
CsState &, CsValueRange args, CsValue &res
) {
CsInt offset = ostd::max(args[2].get_int(), CsInt(0)); CsInt offset = ostd::max(args[2].get_int(), CsInt(0));
CsInt len = ostd::max(args[3].get_int(), CsInt(0)); CsInt len = ostd::max(args[3].get_int(), CsInt(0));
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
@ -488,7 +528,7 @@ void cs_init_lib_list(CsState &cs) {
res.set_mstr(ostd::CharRange(buf.disown(), slen)); res.set_mstr(ostd::CharRange(buf.disown(), slen));
}); });
cs_init_lib_list_sort(cs); cs_init_lib_list_sort(gcs);
} }
struct ListSortItem { struct ListSortItem {
@ -511,8 +551,8 @@ struct ListSortFun {
}; };
static void cs_list_sort( static void cs_list_sort(
CsState &cs, CsValue &res, ostd::ConstCharRange list, CsIdent *x, CsIdent *y, CsState &cs, CsValue &res, ostd::ConstCharRange list,
CsBytecode *body, CsBytecode *unique CsIdent *x, CsIdent *y, CsBytecode *body, CsBytecode *unique
) { ) {
if (x == y || !x->is_alias() || !y->is_alias()) { if (x == y || !x->is_alias() || !y->is_alias()) {
return; return;
@ -609,17 +649,17 @@ static void cs_list_sort(
res.set_mstr(sorted); res.set_mstr(sorted);
} }
static void cs_init_lib_list_sort(CsState &cs) { static void cs_init_lib_list_sort(CsState &gcs) {
cs.new_command("sortlist", "srree", [&cs]( gcs.new_command("sortlist", "srree", [](
CsValueRange args, CsValue &res CsState &cs, CsValueRange args, CsValue &res
) { ) {
cs_list_sort( cs_list_sort(
cs, res, args[0].get_strr(), args[1].get_ident(), cs, res, args[0].get_strr(), args[1].get_ident(),
args[2].get_ident(), args[3].get_code(), args[4].get_code() args[2].get_ident(), args[3].get_code(), args[4].get_code()
); );
}); });
cs.new_command("uniquelist", "srre", [&cs]( gcs.new_command("uniquelist", "srre", [](
CsValueRange args, CsValue &res CsState &cs, CsValueRange args, CsValue &res
) { ) {
cs_list_sort( cs_list_sort(
cs, res, args[0].get_strr(), args[1].get_ident(), cs, res, args[0].get_strr(), args[1].get_ident(),

View File

@ -138,68 +138,74 @@ inline auto cs_fmod(double f, double f2) { return fmod(f, f2); }
inline auto cs_fmod(long double f, long double f2) { return fmodl(f, f2); } inline auto cs_fmod(long double f, long double f2) { return fmodl(f, f2); }
void cs_init_lib_math(CsState &cs) { void cs_init_lib_math(CsState &cs) {
cs.new_command("sin", "f", [](CsValueRange args, CsValue &res) { cs.new_command("sin", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_sin(args[0].get_float() * RAD)); res.set_float(cs_sin(args[0].get_float() * RAD));
}); });
cs.new_command("cos", "f", [](CsValueRange args, CsValue &res) { cs.new_command("cos", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_cos(args[0].get_float() * RAD)); res.set_float(cs_cos(args[0].get_float() * RAD));
}); });
cs.new_command("tan", "f", [](CsValueRange args, CsValue &res) { cs.new_command("tan", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_tan(args[0].get_float() * RAD)); res.set_float(cs_tan(args[0].get_float() * RAD));
}); });
cs.new_command("asin", "f", [](CsValueRange args, CsValue &res) { cs.new_command("asin", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_asin(args[0].get_float()) / RAD); res.set_float(cs_asin(args[0].get_float()) / RAD);
}); });
cs.new_command("acos", "f", [](CsValueRange args, CsValue &res) { cs.new_command("acos", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_acos(args[0].get_float()) / RAD); res.set_float(cs_acos(args[0].get_float()) / RAD);
}); });
cs.new_command("atan", "f", [](CsValueRange args, CsValue &res) { cs.new_command("atan", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_atan(args[0].get_float()) / RAD); res.set_float(cs_atan(args[0].get_float()) / RAD);
}); });
cs.new_command("atan2", "ff", [](CsValueRange args, CsValue &res) { cs.new_command("atan2", "ff", [](
CsState &, CsValueRange args, CsValue &res
) {
res.set_float(cs_atan2(args[0].get_float(), args[1].get_float()) / RAD); res.set_float(cs_atan2(args[0].get_float(), args[1].get_float()) / RAD);
}); });
cs.new_command("sqrt", "f", [](CsValueRange args, CsValue &res) { cs.new_command("sqrt", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_sqrt(args[0].get_float())); res.set_float(cs_sqrt(args[0].get_float()));
}); });
cs.new_command("loge", "f", [](CsValueRange args, CsValue &res) { cs.new_command("loge", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_log(args[0].get_float())); res.set_float(cs_log(args[0].get_float()));
}); });
cs.new_command("log2", "f", [](CsValueRange args, CsValue &res) { cs.new_command("log2", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_log(args[0].get_float()) / M_LN2); res.set_float(cs_log(args[0].get_float()) / M_LN2);
}); });
cs.new_command("log10", "f", [](CsValueRange args, CsValue &res) { cs.new_command("log10", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_log10(args[0].get_float())); res.set_float(cs_log10(args[0].get_float()));
}); });
cs.new_command("exp", "f", [](CsValueRange args, CsValue &res) { cs.new_command("exp", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_exp(args[0].get_float())); res.set_float(cs_exp(args[0].get_float()));
}); });
cs.new_command("min", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("min", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
CsInt v = (!args.empty() ? args[0].get_int() : 0); CsInt v = (!args.empty() ? args[0].get_int() : 0);
for (ostd::Size i = 1; i < args.size(); ++i) { for (ostd::Size i = 1; i < args.size(); ++i) {
v = ostd::min(v, args[i].get_int()); v = ostd::min(v, args[i].get_int());
} }
res.set_int(v); res.set_int(v);
}); });
cs.new_command("max", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("max", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
CsInt v = (!args.empty() ? args[0].get_int() : 0); CsInt v = (!args.empty() ? args[0].get_int() : 0);
for (ostd::Size i = 1; i < args.size(); ++i) { for (ostd::Size i = 1; i < args.size(); ++i) {
v = ostd::max(v, args[i].get_int()); v = ostd::max(v, args[i].get_int());
} }
res.set_int(v); res.set_int(v);
}); });
cs.new_command("minf", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("minf", "f1V", [](
CsState &, CsValueRange args, CsValue &res
) {
CsFloat v = (!args.empty() ? args[0].get_float() : 0); CsFloat v = (!args.empty() ? args[0].get_float() : 0);
for (ostd::Size i = 1; i < args.size(); ++i) { for (ostd::Size i = 1; i < args.size(); ++i) {
v = ostd::min(v, args[i].get_float()); v = ostd::min(v, args[i].get_float());
} }
res.set_float(v); res.set_float(v);
}); });
cs.new_command("maxf", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("maxf", "f1V", [](
CsState &, CsValueRange args, CsValue &res
) {
CsFloat v = (!args.empty() ? args[0].get_float() : 0); CsFloat v = (!args.empty() ? args[0].get_float() : 0);
for (ostd::Size i = 1; i < args.size(); ++i) { for (ostd::Size i = 1; i < args.size(); ++i) {
v = ostd::max(v, args[i].get_float()); v = ostd::max(v, args[i].get_float());
@ -207,21 +213,23 @@ void cs_init_lib_math(CsState &cs) {
res.set_float(v); res.set_float(v);
}); });
cs.new_command("abs", "i", [](CsValueRange args, CsValue &res) { cs.new_command("abs", "i", [](CsState &, CsValueRange args, CsValue &res) {
res.set_int(cs_abs(args[0].get_int())); res.set_int(cs_abs(args[0].get_int()));
}); });
cs.new_command("absf", "f", [](CsValueRange args, CsValue &res) { cs.new_command("absf", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_abs(args[0].get_float())); res.set_float(cs_abs(args[0].get_float()));
}); });
cs.new_command("floor", "f", [](CsValueRange args, CsValue &res) { cs.new_command("floor", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_floor(args[0].get_float())); res.set_float(cs_floor(args[0].get_float()));
}); });
cs.new_command("ceil", "f", [](CsValueRange args, CsValue &res) { cs.new_command("ceil", "f", [](CsState &, CsValueRange args, CsValue &res) {
res.set_float(cs_ceil(args[0].get_float())); res.set_float(cs_ceil(args[0].get_float()));
}); });
cs.new_command("round", "ff", [](CsValueRange args, CsValue &res) { cs.new_command("round", "ff", [](
CsState &, CsValueRange args, CsValue &res
) {
CsFloat step = args[1].get_float(); CsFloat step = args[1].get_float();
CsFloat r = args[0].get_float(); CsFloat r = args[0].get_float();
if (step > 0) { if (step > 0) {
@ -233,43 +241,43 @@ void cs_init_lib_math(CsState &cs) {
res.set_float(r); res.set_float(r);
}); });
cs.new_command("+", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("+", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>(args, res, 0, ostd::Add<CsInt>(), CsMathNoop<CsInt>()); cs_mathop<CsInt>(args, res, 0, ostd::Add<CsInt>(), CsMathNoop<CsInt>());
}); });
cs.new_command("*", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("*", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 1, ostd::Multiply<CsInt>(), CsMathNoop<CsInt>() args, res, 1, ostd::Multiply<CsInt>(), CsMathNoop<CsInt>()
); );
}); });
cs.new_command("-", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("-", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, ostd::Subtract<CsInt>(), ostd::Negate<CsInt>() args, res, 0, ostd::Subtract<CsInt>(), ostd::Negate<CsInt>()
); );
}); });
cs.new_command("^", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("^", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, ostd::BitXor<CsInt>(), [](CsInt val) { return ~val; } args, res, 0, ostd::BitXor<CsInt>(), [](CsInt val) { return ~val; }
); );
}); });
cs.new_command("~", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("~", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, ostd::BitXor<CsInt>(), [](CsInt val) { return ~val; } args, res, 0, ostd::BitXor<CsInt>(), [](CsInt val) { return ~val; }
); );
}); });
cs.new_command("&", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("&", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, ostd::BitAnd<CsInt>(), CsMathNoop<CsInt>() args, res, 0, ostd::BitAnd<CsInt>(), CsMathNoop<CsInt>()
); );
}); });
cs.new_command("|", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("|", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, ostd::BitOr<CsInt>(), CsMathNoop<CsInt>() args, res, 0, ostd::BitOr<CsInt>(), CsMathNoop<CsInt>()
); );
}); });
/* special combined cases */ /* special combined cases */
cs.new_command("^~", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("^~", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
CsInt val; CsInt val;
if (args.size() >= 2) { if (args.size() >= 2) {
val = args[0].get_int() ^ ~args[1].get_int(); val = args[0].get_int() ^ ~args[1].get_int();
@ -281,7 +289,7 @@ void cs_init_lib_math(CsState &cs) {
} }
res.set_int(val); res.set_int(val);
}); });
cs.new_command("&~", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("&~", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
CsInt val; CsInt val;
if (args.size() >= 2) { if (args.size() >= 2) {
val = args[0].get_int() & ~args[1].get_int(); val = args[0].get_int() & ~args[1].get_int();
@ -293,7 +301,7 @@ void cs_init_lib_math(CsState &cs) {
} }
res.set_int(val); res.set_int(val);
}); });
cs.new_command("|~", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("|~", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
CsInt val; CsInt val;
if (args.size() >= 2) { if (args.size() >= 2) {
val = args[0].get_int() | ~args[1].get_int(); val = args[0].get_int() | ~args[1].get_int();
@ -306,7 +314,7 @@ void cs_init_lib_math(CsState &cs) {
res.set_int(val); res.set_int(val);
}); });
cs.new_command("<<", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("<<", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, [](CsInt val1, CsInt val2) { args, res, 0, [](CsInt val1, CsInt val2) {
return (val2 < CsInt(sizeof(CsInt) * CHAR_BIT)) return (val2 < CsInt(sizeof(CsInt) * CHAR_BIT))
@ -315,7 +323,7 @@ void cs_init_lib_math(CsState &cs) {
}, CsMathNoop<CsInt>() }, CsMathNoop<CsInt>()
); );
}); });
cs.new_command(">>", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command(">>", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, [](CsInt val1, CsInt val2) { args, res, 0, [](CsInt val1, CsInt val2) {
return val1 >> ostd::clamp( return val1 >> ostd::clamp(
@ -325,23 +333,23 @@ void cs_init_lib_math(CsState &cs) {
); );
}); });
cs.new_command("+f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("+f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 0, ostd::Add<CsFloat>(), CsMathNoop<CsFloat>() args, res, 0, ostd::Add<CsFloat>(), CsMathNoop<CsFloat>()
); );
}); });
cs.new_command("*f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("*f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 1, ostd::Multiply<CsFloat>(), CsMathNoop<CsFloat>() args, res, 1, ostd::Multiply<CsFloat>(), CsMathNoop<CsFloat>()
); );
}); });
cs.new_command("-f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("-f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 0, ostd::Subtract<CsFloat>(), ostd::Negate<CsFloat>() args, res, 0, ostd::Subtract<CsFloat>(), ostd::Negate<CsFloat>()
); );
}); });
cs.new_command("div", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("div", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, [](CsInt val1, CsInt val2) { args, res, 0, [](CsInt val1, CsInt val2) {
if (val2) { if (val2) {
@ -351,7 +359,7 @@ void cs_init_lib_math(CsState &cs) {
}, CsMathNoop<CsInt>() }, CsMathNoop<CsInt>()
); );
}); });
cs.new_command("mod", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("mod", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsInt>( cs_mathop<CsInt>(
args, res, 0, [](CsInt val1, CsInt val2) { args, res, 0, [](CsInt val1, CsInt val2) {
if (val2) { if (val2) {
@ -361,7 +369,9 @@ void cs_init_lib_math(CsState &cs) {
}, CsMathNoop<CsInt>() }, CsMathNoop<CsInt>()
); );
}); });
cs.new_command("divf", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("divf", "f1V", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 0, [](CsFloat val1, CsFloat val2) { args, res, 0, [](CsFloat val1, CsFloat val2) {
if (val2) { if (val2) {
@ -371,7 +381,9 @@ void cs_init_lib_math(CsState &cs) {
}, CsMathNoop<CsFloat>() }, CsMathNoop<CsFloat>()
); );
}); });
cs.new_command("modf", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("modf", "f1V", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 0, [](CsFloat val1, CsFloat val2) { args, res, 0, [](CsFloat val1, CsFloat val2) {
if (val2) { if (val2) {
@ -382,7 +394,7 @@ void cs_init_lib_math(CsState &cs) {
); );
}); });
cs.new_command("pow", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("pow", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_mathop<CsFloat>( cs_mathop<CsFloat>(
args, res, 0, [](CsFloat val1, CsFloat val2) { args, res, 0, [](CsFloat val1, CsFloat val2) {
return CsFloat(pow(val1, val2)); return CsFloat(pow(val1, val2));
@ -390,41 +402,41 @@ void cs_init_lib_math(CsState &cs) {
); );
}); });
cs.new_command("=", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("=", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::Equal<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::Equal<CsInt>());
}); });
cs.new_command("!=", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("!=", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::NotEqual<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::NotEqual<CsInt>());
}); });
cs.new_command("<", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("<", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::Less<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::Less<CsInt>());
}); });
cs.new_command(">", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command(">", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::Greater<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::Greater<CsInt>());
}); });
cs.new_command("<=", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command("<=", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::LessEqual<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::LessEqual<CsInt>());
}); });
cs.new_command(">=", "i1V", [](CsValueRange args, CsValue &res) { cs.new_command(">=", "i1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsInt>(args, res, ostd::GreaterEqual<CsInt>()); cs_cmpop<CsInt>(args, res, ostd::GreaterEqual<CsInt>());
}); });
cs.new_command("=f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("=f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::Equal<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::Equal<CsFloat>());
}); });
cs.new_command("!=f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("!=f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::NotEqual<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::NotEqual<CsFloat>());
}); });
cs.new_command("<f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("<f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::Less<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::Less<CsFloat>());
}); });
cs.new_command(">f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command(">f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::Greater<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::Greater<CsFloat>());
}); });
cs.new_command("<=f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command("<=f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::LessEqual<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::LessEqual<CsFloat>());
}); });
cs.new_command(">=f", "f1V", [](CsValueRange args, CsValue &res) { cs.new_command(">=f", "f1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_cmpop<CsFloat>(args, res, ostd::GreaterEqual<CsFloat>()); cs_cmpop<CsFloat>(args, res, ostd::GreaterEqual<CsFloat>());
}); });
} }

View File

@ -22,7 +22,9 @@ static inline void cs_strgcmp(CsValueRange args, CsValue &res, F cfunc) {
}; };
void cs_init_lib_string(CsState &cs) { void cs_init_lib_string(CsState &cs) {
cs.new_command("strstr", "ss", [](CsValueRange args, CsValue &res) { cs.new_command("strstr", "ss", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange a = args[0].get_strr(), b = args[1].get_strr(); ostd::ConstCharRange a = args[0].get_strr(), b = args[1].get_strr();
ostd::ConstCharRange s = a; ostd::ConstCharRange s = a;
for (CsInt i = 0; b.size() <= s.size(); ++i) { for (CsInt i = 0; b.size() <= s.size(); ++i) {
@ -35,11 +37,15 @@ void cs_init_lib_string(CsState &cs) {
res.set_int(-1); res.set_int(-1);
}); });
cs.new_command("strlen", "s", [](CsValueRange args, CsValue &res) { cs.new_command("strlen", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
res.set_int(CsInt(args[0].get_strr().size())); res.set_int(CsInt(args[0].get_strr().size()));
}); });
cs.new_command("strcode", "si", [](CsValueRange args, CsValue &res) { cs.new_command("strcode", "si", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange str = args[0].get_strr(); ostd::ConstCharRange str = args[0].get_strr();
CsInt i = args[1].get_int(); CsInt i = args[1].get_int();
if (i >= CsInt(str.size())) { if (i >= CsInt(str.size())) {
@ -49,14 +55,18 @@ void cs_init_lib_string(CsState &cs) {
} }
}); });
cs.new_command("codestr", "i", [](CsValueRange args, CsValue &res) { cs.new_command("codestr", "i", [](
CsState &, CsValueRange args, CsValue &res
) {
char *s = new char[2]; char *s = new char[2];
s[0] = char(args[0].get_int()); s[0] = char(args[0].get_int());
s[1] = '\0'; s[1] = '\0';
res.set_mstr(s); res.set_mstr(s);
}); });
cs.new_command("strlower", "s", [](CsValueRange args, CsValue &res) { cs.new_command("strlower", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
char *buf = new char[s.size() + 1]; char *buf = new char[s.size() + 1];
for (auto i: ostd::range(s.size())) { for (auto i: ostd::range(s.size())) {
@ -66,7 +76,9 @@ void cs_init_lib_string(CsState &cs) {
res.set_mstr(ostd::CharRange(buf, s.size())); res.set_mstr(ostd::CharRange(buf, s.size()));
}); });
cs.new_command("strupper", "s", [](CsValueRange args, CsValue &res) { cs.new_command("strupper", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
char *buf = new char[s.size() + 1]; char *buf = new char[s.size() + 1];
for (auto i: ostd::range(s.size())) { for (auto i: ostd::range(s.size())) {
@ -76,14 +88,18 @@ void cs_init_lib_string(CsState &cs) {
res.set_mstr(ostd::CharRange(buf, s.size())); res.set_mstr(ostd::CharRange(buf, s.size()));
}); });
cs.new_command("escape", "s", [](CsValueRange args, CsValue &res) { cs.new_command("escape", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
auto x = ostd::appender<CsString>(); auto x = ostd::appender<CsString>();
util::escape_string(x, args[0].get_strr()); util::escape_string(x, args[0].get_strr());
ostd::Size len = x.size(); ostd::Size len = x.size();
res.set_mstr(ostd::CharRange(x.get().disown(), len)); res.set_mstr(ostd::CharRange(x.get().disown(), len));
}); });
cs.new_command("unescape", "s", [](CsValueRange args, CsValue &res) { cs.new_command("unescape", "s", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
char *buf = new char[s.size() + 1]; char *buf = new char[s.size() + 1];
auto writer = ostd::CharRange(buf, s.size() + 1); auto writer = ostd::CharRange(buf, s.size() + 1);
@ -92,21 +108,27 @@ void cs_init_lib_string(CsState &cs) {
res.set_mstr(ostd::CharRange(buf, s.size())); res.set_mstr(ostd::CharRange(buf, s.size()));
}); });
cs.new_command("concat", "V", [](CsValueRange args, CsValue &res) { cs.new_command("concat", "V", [](
CsState &, CsValueRange args, CsValue &res
) {
auto s = ostd::appender<CsString>(); auto s = ostd::appender<CsString>();
cscript::util::tvals_concat(s, args, " "); cscript::util::tvals_concat(s, args, " ");
res.set_mstr(s.get().iter()); res.set_mstr(s.get().iter());
s.get().disown(); s.get().disown();
}); });
cs.new_command("concatword", "V", [](CsValueRange args, CsValue &res) { cs.new_command("concatword", "V", [](
CsState &, CsValueRange args, CsValue &res
) {
auto s = ostd::appender<CsString>(); auto s = ostd::appender<CsString>();
cscript::util::tvals_concat(s, args); cscript::util::tvals_concat(s, args);
res.set_mstr(s.get().iter()); res.set_mstr(s.get().iter());
s.get().disown(); s.get().disown();
}); });
cs.new_command("format", "V", [](CsValueRange args, CsValue &res) { cs.new_command("format", "V", [](
CsState &, CsValueRange args, CsValue &res
) {
if (args.empty()) { if (args.empty()) {
return; return;
} }
@ -139,7 +161,9 @@ void cs_init_lib_string(CsState &cs) {
res.set_mstr(ostd::CharRange(s.disown(), len)); res.set_mstr(ostd::CharRange(s.disown(), len));
}); });
cs.new_command("tohex", "ii", [](CsValueRange args, CsValue &res) { cs.new_command("tohex", "ii", [](
CsState &, CsValueRange args, CsValue &res
) {
auto r = ostd::appender<CsVector<char>>(); auto r = ostd::appender<CsVector<char>>();
ostd::format( ostd::format(
r, "0x%.*X", ostd::max(args[1].get_int(), CsInt(1)), r, "0x%.*X", ostd::max(args[1].get_int(), CsInt(1)),
@ -150,7 +174,9 @@ void cs_init_lib_string(CsState &cs) {
res.set_mstr(ostd::CharRange(r.get().disown(), len)); res.set_mstr(ostd::CharRange(r.get().disown(), len));
}); });
cs.new_command("substr", "siiN", [](CsValueRange args, CsValue &res) { cs.new_command("substr", "siiN", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
CsInt start = args[1].get_int(), count = args[2].get_int(); CsInt start = args[1].get_int(), count = args[2].get_int();
CsInt numargs = args[3].get_int(); CsInt numargs = args[3].get_int();
@ -163,29 +189,33 @@ void cs_init_lib_string(CsState &cs) {
)); ));
}); });
cs.new_command("strcmp", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command("strcmp", "s1V", [](
CsState &, CsValueRange args, CsValue &res
) {
cs_strgcmp(args, res, ostd::Equal<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::Equal<ostd::ConstCharRange>());
}); });
cs.new_command("=s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command("=s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::Equal<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::Equal<ostd::ConstCharRange>());
}); });
cs.new_command("!=s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command("!=s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::NotEqual<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::NotEqual<ostd::ConstCharRange>());
}); });
cs.new_command("<s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command("<s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::Less<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::Less<ostd::ConstCharRange>());
}); });
cs.new_command(">s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command(">s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::Greater<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::Greater<ostd::ConstCharRange>());
}); });
cs.new_command("<=s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command("<=s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::LessEqual<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::LessEqual<ostd::ConstCharRange>());
}); });
cs.new_command(">=s", "s1V", [](CsValueRange args, CsValue &res) { cs.new_command(">=s", "s1V", [](CsState &, CsValueRange args, CsValue &res) {
cs_strgcmp(args, res, ostd::GreaterEqual<ostd::ConstCharRange>()); cs_strgcmp(args, res, ostd::GreaterEqual<ostd::ConstCharRange>());
}); });
cs.new_command("strreplace", "ssss", [](CsValueRange args, CsValue &res) { cs.new_command("strreplace", "ssss", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
ostd::ConstCharRange oldval = args[1].get_strr(), ostd::ConstCharRange oldval = args[1].get_strr(),
newval = args[2].get_strr(), newval = args[2].get_strr(),
@ -229,7 +259,9 @@ void cs_init_lib_string(CsState &cs) {
} }
}); });
cs.new_command("strsplice", "ssii", [](CsValueRange args, CsValue &res) { cs.new_command("strsplice", "ssii", [](
CsState &, CsValueRange args, CsValue &res
) {
ostd::ConstCharRange s = args[0].get_strr(); ostd::ConstCharRange s = args[0].get_strr();
ostd::ConstCharRange vals = args[1].get_strr(); ostd::ConstCharRange vals = args[1].get_strr();
CsInt skip = args[2].get_int(), CsInt skip = args[2].get_int(),

View File

@ -186,9 +186,9 @@ static void do_sigint(int n) {
/* in case another SIGINT happens, terminate normally */ /* in case another SIGINT happens, terminate normally */
signal(n, SIG_DFL); signal(n, SIG_DFL);
if (gcs) { if (gcs) {
gcs->set_call_hook([]() { gcs->set_call_hook([](CsState &cs) {
gcs->set_call_hook(nullptr); cs.set_call_hook(nullptr);
gcs->error("<execution interrupted>"); cs.error("<execution interrupted>");
}); });
} }
} }
@ -236,7 +236,7 @@ static void do_tty(CsState &cs) {
auto prompt2 = cs.new_svar("PROMPT2", ">> "); auto prompt2 = cs.new_svar("PROMPT2", ">> ");
bool do_exit = false; bool do_exit = false;
cs.new_command("quit", "", [&do_exit](auto, auto &) { cs.new_command("quit", "", [&do_exit](CsState &, auto, auto &) {
do_exit = true; do_exit = true;
}); });
@ -272,11 +272,11 @@ static void do_tty(CsState &cs) {
} }
int main(int argc, char **argv) { int main(int argc, char **argv) {
CsState cs; CsState csg;
gcs = &cs; gcs = &csg;
cs.init_libs(); csg.init_libs();
cs.new_command("exec", "sb", [&cs](auto args, auto &res) { csg.new_command("exec", "sb", [](CsState &cs, auto args, auto &res) {
auto file = args[0].get_strr(); auto file = args[0].get_strr();
bool ret = cs.run_file(file); bool ret = cs.run_file(file);
if (!ret) { if (!ret) {
@ -289,7 +289,7 @@ int main(int argc, char **argv) {
} }
}); });
cs.new_command("echo", "C", [&cs](auto args, auto &) { csg.new_command("echo", "C", [](CsState &cs, auto args, auto &) {
cs.get_out().writeln(args[0].get_strr()); cs.get_out().writeln(args[0].get_strr());
}); });
@ -366,31 +366,31 @@ endargs:
if (*str == '\0') { if (*str == '\0') {
str = argv[++i]; str = argv[++i];
} }
do_call(cs, str); do_call(csg, str);
break; break;
} }
} }
} }
if (firstarg) { if (firstarg) {
do_call(cs, argv[firstarg], true); do_call(csg, argv[firstarg], true);
} }
if (!firstarg && !has_str && !has_ver) { if (!firstarg && !has_str && !has_ver) {
if (stdin_is_tty()) { if (stdin_is_tty()) {
init_lineedit(argv[0]); init_lineedit(argv[0]);
do_tty(cs); do_tty(csg);
return 0; return 0;
} else { } else {
ostd::String str; ostd::String str;
for (char c = '\0'; (c = ostd::in.getchar()) != EOF;) { for (char c = '\0'; (c = ostd::in.getchar()) != EOF;) {
str += c; str += c;
} }
do_call(cs, str); do_call(csg, str);
} }
} }
if (has_inter) { if (has_inter) {
if (stdin_is_tty()) { if (stdin_is_tty()) {
init_lineedit(argv[0]); init_lineedit(argv[0]);
do_tty(cs); do_tty(csg);
} }
return 0; return 0;
} }