#ifndef SCRIPTING_API
#define __suspend
-#define __custom
+#define __custom(x)
#include <string>
#endif
/**
* Display the value of the argument. This is useful for inspecting tables.
*/
-SQInteger display(HSQUIRRELVM vm) __custom;
+SQInteger display(HSQUIRRELVM vm) __custom("t.");
/**
* Displays contents of the current stack
/**
* returns the currently running thread
*/
-SQInteger get_current_thread(HSQUIRRELVM vm) __custom;
+SQInteger get_current_thread(HSQUIRRELVM vm) __custom("t");
/**
* Display a text file and scrolls it over the screen (on next screenswitch)
<< (_class != 0 ? _class->name + "_" : "") << function->name
<< "_wrapper, 0);\n";
- if(!function->custom) {
+ if(function->custom) {
+ out << ind << "sq_setparamscheck(v, SQ_MATCHTYPEMASKSTRING, " << function->parameter_spec << ");\n";
+ } else {
out << ind << "sq_setparamscheck(v, SQ_MATCHTYPEMASKSTRING, \"";
- out << "x|t ";
+ out << "x|t";
if(!function->parameters.empty())
{
// Skip the first parameter since its a HSQUIRRELVM that is
// handled internally
- if (function->suspend)
+ if (function->suspend) {
++p;
-
+ } else if (p->type.atomic_type == HSQUIRRELVMType::instance()) {
+ ++p;
+ }
+
for(; p != function->parameters.end(); ++p) {
if(p->type.atomic_type == &BasicType::INT) {
- out << "i ";
+ out << "i";
} else if(p->type.atomic_type == &BasicType::FLOAT) {
- out << "f|i ";
+ out << "n";
} else if(p->type.atomic_type == &BasicType::BOOL) {
- out << "b ";
+ out << "b";
} else if(p->type.atomic_type == StringType::instance()) {
- out << "s ";
+ out << "s";
} else {
- out << ". ";
+ out << ".";
}
}
}
// custom function?
if(function->custom) {
- if(function->type != Function::FUNCTION)
+ if(function->type != Function::FUNCTION)
throw std::runtime_error(
"custom not allow constructor+destructor yet");
if(function->return_type.atomic_type != SQIntegerType::instance())
- throw std::runtime_error("custom function has to return SQInteger");
+ throw std::runtime_error("custom function '" + function->name + "' has to return SQInteger");
if(function->parameters.size() != 1)
throw std::runtime_error(
- "custom function must have 1 HSQUIRRELVM parameter");
+ "custom function '" + function->name + "' must have 1 HSQUIRRELVM parameter");
out << ind << "return ";
if(_class != 0)
function_attributes:
/* empty */
| T_CONST function_attributes
- | T_CUSTOM function_attributes
+ | T_CUSTOM '(' T_STRING ')' function_attributes
{
+ current_function->parameter_spec = $3;
current_function->custom = true;
}
| T_SUSPEND function_attributes