2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** binding-mri.cpp
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** mkxp 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, either version 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp 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. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "binding.h"
|
|
|
|
#include "binding-util.h"
|
2013-10-09 10:30:33 +00:00
|
|
|
#include "sharedstate.h"
|
2013-09-01 14:27:21 +00:00
|
|
|
#include "eventthread.h"
|
|
|
|
#include "filesystem.h"
|
2013-12-11 19:46:54 +00:00
|
|
|
#include "util.h"
|
|
|
|
#include "debugwriter.h"
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
#include <ruby.h>
|
|
|
|
#include <ruby/encoding.h>
|
|
|
|
|
|
|
|
#include <string>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-04 16:48:37 +00:00
|
|
|
#include <zlib.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-04 16:48:37 +00:00
|
|
|
#include <SDL_filesystem.h>
|
2013-10-08 04:00:04 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
extern const char module_rpg[];
|
|
|
|
|
|
|
|
static void mriBindingExecute();
|
|
|
|
static void mriBindingTerminate();
|
|
|
|
|
|
|
|
ScriptBinding scriptBindingImpl =
|
|
|
|
{
|
2013-10-08 04:05:06 +00:00
|
|
|
mriBindingExecute,
|
|
|
|
mriBindingTerminate
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ScriptBinding *scriptBinding = &scriptBindingImpl;
|
|
|
|
|
|
|
|
void tableBindingInit();
|
|
|
|
void etcBindingInit();
|
|
|
|
void fontBindingInit();
|
|
|
|
void bitmapBindingInit();
|
|
|
|
void spriteBindingInit();
|
|
|
|
void viewportBindingInit();
|
|
|
|
void planeBindingInit();
|
|
|
|
void windowBindingInit();
|
|
|
|
void tilemapBindingInit();
|
|
|
|
|
|
|
|
void inputBindingInit();
|
|
|
|
void audioBindingInit();
|
|
|
|
void graphicsBindingInit();
|
|
|
|
|
|
|
|
void fileIntBindingInit();
|
|
|
|
|
2013-10-08 04:05:06 +00:00
|
|
|
RB_METHOD(mriPrint);
|
|
|
|
RB_METHOD(mriP);
|
2013-10-08 04:00:04 +00:00
|
|
|
RB_METHOD(mriDataDirectory);
|
2013-10-19 13:54:21 +00:00
|
|
|
RB_METHOD(mkxpPuts);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-07-13 03:34:18 +00:00
|
|
|
#ifndef RGSS3
|
2014-05-06 10:13:12 +00:00
|
|
|
RB_METHOD(_kernelCaller);
|
2014-07-13 03:34:18 +00:00
|
|
|
#endif
|
2014-05-06 10:13:12 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static void mriBindingInit()
|
|
|
|
{
|
|
|
|
tableBindingInit();
|
|
|
|
etcBindingInit();
|
|
|
|
fontBindingInit();
|
|
|
|
bitmapBindingInit();
|
|
|
|
spriteBindingInit();
|
|
|
|
viewportBindingInit();
|
|
|
|
planeBindingInit();
|
|
|
|
windowBindingInit();
|
|
|
|
tilemapBindingInit();
|
|
|
|
|
|
|
|
inputBindingInit();
|
|
|
|
audioBindingInit();
|
|
|
|
graphicsBindingInit();
|
|
|
|
|
|
|
|
fileIntBindingInit();
|
|
|
|
|
2014-04-11 11:31:09 +00:00
|
|
|
#ifdef RGSS3
|
|
|
|
_rb_define_module_function(rb_mKernel, "msgbox", mriPrint);
|
|
|
|
_rb_define_module_function(rb_mKernel, "msgbox_p", mriP);
|
|
|
|
#else
|
2013-09-01 14:27:21 +00:00
|
|
|
_rb_define_module_function(rb_mKernel, "print", mriPrint);
|
|
|
|
_rb_define_module_function(rb_mKernel, "p", mriP);
|
2014-04-11 11:31:09 +00:00
|
|
|
#endif
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
rb_eval_string(module_rpg);
|
|
|
|
|
2013-10-08 04:00:04 +00:00
|
|
|
VALUE mod = rb_define_module("System");
|
|
|
|
_rb_define_module_function(mod, "data_directory", mriDataDirectory);
|
2013-10-19 13:54:21 +00:00
|
|
|
_rb_define_module_function(mod, "puts", mkxpPuts);
|
2013-10-08 04:00:04 +00:00
|
|
|
|
2014-05-07 01:19:06 +00:00
|
|
|
#ifndef RGSS3
|
2014-05-06 10:13:12 +00:00
|
|
|
rb_define_alias(rb_singleton_class(rb_mKernel), "_mkxp_kernel_caller_alias", "caller");
|
|
|
|
_rb_define_module_function(rb_mKernel, "caller", _kernelCaller);
|
2014-05-07 01:19:06 +00:00
|
|
|
#endif
|
2014-05-06 10:13:12 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
rb_define_global_const("MKXP", Qtrue);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-12-11 19:46:54 +00:00
|
|
|
showMsg(const std::string &msg)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-12-11 19:46:54 +00:00
|
|
|
shState->eThread().showMessageBox(msg.c_str());
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
2013-10-19 13:54:21 +00:00
|
|
|
RB_METHOD(mkxpPuts)
|
|
|
|
{
|
|
|
|
RB_UNUSED_PARAM;
|
|
|
|
|
|
|
|
const char *str;
|
2013-12-20 10:29:12 +00:00
|
|
|
rb_get_args(argc, argv, "z", &str RB_ARG_END);
|
2013-10-19 13:54:21 +00:00
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
Debug() << str;
|
2013-10-19 13:54:21 +00:00
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static void printP(int argc, VALUE *argv,
|
|
|
|
const char *convMethod, const char *sep)
|
|
|
|
{
|
|
|
|
VALUE dispString = rb_str_buf_new(128);
|
|
|
|
ID conv = rb_intern(convMethod);
|
|
|
|
|
|
|
|
for (int i = 0; i < argc; ++i)
|
|
|
|
{
|
2014-01-24 21:23:30 +00:00
|
|
|
VALUE str = rb_funcall2(argv[i], conv, 0, NULL);
|
2013-09-01 14:27:21 +00:00
|
|
|
rb_str_buf_append(dispString, str);
|
|
|
|
|
|
|
|
if (i < argc)
|
|
|
|
rb_str_buf_cat2(dispString, sep);
|
|
|
|
}
|
|
|
|
|
|
|
|
showMsg(RSTRING_PTR(dispString));
|
|
|
|
}
|
|
|
|
|
|
|
|
RB_METHOD(mriPrint)
|
|
|
|
{
|
|
|
|
RB_UNUSED_PARAM;
|
|
|
|
|
|
|
|
printP(argc, argv, "to_s", "");
|
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
|
|
|
RB_METHOD(mriP)
|
|
|
|
{
|
|
|
|
RB_UNUSED_PARAM;
|
|
|
|
|
|
|
|
printP(argc, argv, "inspect", "\n");
|
|
|
|
|
|
|
|
return Qnil;
|
|
|
|
}
|
|
|
|
|
2013-10-08 04:00:04 +00:00
|
|
|
RB_METHOD(mriDataDirectory)
|
|
|
|
{
|
|
|
|
RB_UNUSED_PARAM;
|
|
|
|
|
|
|
|
const char *org, *app;
|
|
|
|
|
2013-12-20 10:29:12 +00:00
|
|
|
rb_get_args(argc, argv, "zz", &org, &app RB_ARG_END);
|
2013-10-08 04:00:04 +00:00
|
|
|
|
|
|
|
char *path = SDL_GetPrefPath(org, app);
|
|
|
|
|
|
|
|
VALUE pathStr = rb_str_new_cstr(path);
|
|
|
|
|
|
|
|
SDL_free(path);
|
|
|
|
|
|
|
|
return pathStr;
|
|
|
|
}
|
|
|
|
|
2014-05-07 01:19:06 +00:00
|
|
|
#ifndef RGSS3
|
|
|
|
|
2014-05-06 10:13:12 +00:00
|
|
|
RB_METHOD(_kernelCaller)
|
|
|
|
{
|
|
|
|
RB_UNUSED_PARAM;
|
|
|
|
|
|
|
|
VALUE trace = rb_funcall2(rb_mKernel, rb_intern("_mkxp_kernel_caller_alias"), 0, 0);
|
|
|
|
|
|
|
|
if (rb_type(trace) != RUBY_T_ARRAY)
|
|
|
|
return trace;
|
|
|
|
|
|
|
|
long len = RARRAY_LEN(trace);
|
|
|
|
|
|
|
|
if (len < 2)
|
|
|
|
return trace;
|
|
|
|
|
|
|
|
/* Remove useless "ruby:1:in 'eval'" */
|
|
|
|
rb_ary_pop(trace);
|
|
|
|
|
|
|
|
/* Also remove trace of this helper function */
|
|
|
|
rb_ary_shift(trace);
|
|
|
|
|
|
|
|
len -= 2;
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
return trace;
|
|
|
|
|
|
|
|
/* RMXP does this, not sure if specific or 1.8 related */
|
|
|
|
VALUE args[] = { rb_str_new_cstr(":in `<main>'"), rb_str_new_cstr("") };
|
2014-05-25 10:57:04 +00:00
|
|
|
rb_funcall2(rb_ary_entry(trace, len-1), rb_intern("gsub!"), 2, args);
|
2014-05-06 10:13:12 +00:00
|
|
|
|
|
|
|
return trace;
|
|
|
|
}
|
|
|
|
|
2014-05-07 01:19:06 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-11 14:40:49 +00:00
|
|
|
static VALUE newStringUTF8(const char *string, long length)
|
2014-04-10 12:00:05 +00:00
|
|
|
{
|
2014-04-11 14:40:49 +00:00
|
|
|
return rb_enc_str_new(string, length, rb_utf8_encoding());
|
2014-04-10 12:00:05 +00:00
|
|
|
}
|
|
|
|
|
2014-04-11 14:40:49 +00:00
|
|
|
struct evalArg
|
|
|
|
{
|
2014-04-10 12:00:05 +00:00
|
|
|
VALUE string;
|
|
|
|
VALUE filename;
|
|
|
|
};
|
|
|
|
|
|
|
|
static VALUE evalHelper(evalArg *arg)
|
|
|
|
{
|
|
|
|
VALUE argv[] = { arg->string, Qnil, arg->filename };
|
|
|
|
return rb_funcall2(Qnil, rb_intern("eval"), ARRAY_SIZE(argv), argv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE evalString(VALUE string, VALUE filename, int *state)
|
|
|
|
{
|
|
|
|
evalArg arg = { string, filename };
|
|
|
|
return rb_protect((VALUE (*)(VALUE))evalHelper, (VALUE)&arg, state);
|
|
|
|
}
|
|
|
|
|
2014-04-11 14:40:49 +00:00
|
|
|
static void runCustomScript(const std::string &filename)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2014-04-10 12:00:05 +00:00
|
|
|
std::string scriptData;
|
2013-12-11 19:46:54 +00:00
|
|
|
|
2014-04-11 14:40:49 +00:00
|
|
|
if (!readFile(filename.c_str(), scriptData))
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-12-11 19:46:54 +00:00
|
|
|
showMsg(std::string("Unable to open '") + filename + "'");
|
2013-09-01 14:27:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-11 14:40:49 +00:00
|
|
|
evalString(newStringUTF8(scriptData.c_str(), scriptData.size()),
|
|
|
|
newStringUTF8(filename.c_str(), filename.size()), NULL);
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE kernelLoadDataInt(const char *filename);
|
|
|
|
|
2014-04-15 09:54:22 +00:00
|
|
|
#ifdef RGSS3
|
|
|
|
#define RGSS_SECTION_STR "{%04ld}"
|
|
|
|
#else
|
|
|
|
#define RGSS_SECTION_STR "Section%03ld"
|
|
|
|
#endif
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static void runRMXPScripts()
|
|
|
|
{
|
2013-12-11 19:46:54 +00:00
|
|
|
const std::string &scriptPack = shState->rtData().config.game.scripts;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
if (scriptPack.empty())
|
2013-09-01 14:36:11 +00:00
|
|
|
{
|
|
|
|
showMsg("No game scripts specified (missing Game.ini?)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
if (!shState->fileSystem().exists(scriptPack.c_str()))
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
showMsg("Unable to open '" + scriptPack + "'");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
VALUE scriptArray = kernelLoadDataInt(scriptPack.c_str());
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
if (rb_type(scriptArray) != RUBY_T_ARRAY)
|
|
|
|
{
|
|
|
|
showMsg("Failed to read script data");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-09 20:36:56 +00:00
|
|
|
rb_gv_set("$RGSS_SCRIPTS", scriptArray);
|
|
|
|
|
2014-01-24 21:23:30 +00:00
|
|
|
long scriptCount = RARRAY_LEN(scriptArray);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
std::string decodeBuffer;
|
2013-09-01 14:27:21 +00:00
|
|
|
decodeBuffer.resize(0x1000);
|
|
|
|
|
2014-01-24 21:23:30 +00:00
|
|
|
for (long i = 0; i < scriptCount; ++i)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
VALUE script = rb_ary_entry(scriptArray, i);
|
|
|
|
|
|
|
|
if (rb_type(script) != RUBY_T_ARRAY)
|
|
|
|
continue;
|
|
|
|
|
2013-12-29 13:55:49 +00:00
|
|
|
VALUE scriptName = rb_ary_entry(script, 1);
|
|
|
|
VALUE scriptString = rb_ary_entry(script, 2);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
int result = Z_OK;
|
2013-12-31 21:24:56 +00:00
|
|
|
unsigned long bufferLen;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
unsigned char *bufferPtr =
|
2013-12-11 19:46:54 +00:00
|
|
|
reinterpret_cast<unsigned char*>(const_cast<char*>(decodeBuffer.c_str()));
|
2013-09-01 14:27:21 +00:00
|
|
|
const unsigned char *sourcePtr =
|
2013-12-29 13:55:49 +00:00
|
|
|
reinterpret_cast<const unsigned char*>(RSTRING_PTR(scriptString));
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
bufferLen = decodeBuffer.length();
|
|
|
|
|
|
|
|
result = uncompress(bufferPtr, &bufferLen,
|
2013-12-29 13:55:49 +00:00
|
|
|
sourcePtr, RSTRING_LEN(scriptString));
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
bufferPtr[bufferLen] = '\0';
|
|
|
|
|
|
|
|
if (result != Z_BUF_ERROR)
|
|
|
|
break;
|
|
|
|
|
|
|
|
decodeBuffer.resize(decodeBuffer.size()*2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result != Z_OK)
|
|
|
|
{
|
|
|
|
static char buffer[256];
|
2014-01-24 21:23:30 +00:00
|
|
|
snprintf(buffer, sizeof(buffer), "Error decoding script %ld: '%s'",
|
2013-12-29 13:55:49 +00:00
|
|
|
i, RSTRING_PTR(scriptName));
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
showMsg(buffer);
|
2014-01-01 11:56:45 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-04-09 20:36:56 +00:00
|
|
|
rb_ary_store(script, 3, rb_str_new_cstr(decodeBuffer.c_str()));
|
2014-04-09 23:16:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (long i = 0; i < scriptCount; ++i)
|
|
|
|
{
|
|
|
|
VALUE script = rb_ary_entry(scriptArray, i);
|
|
|
|
VALUE scriptDecoded = rb_ary_entry(script, 3);
|
2014-04-11 14:40:49 +00:00
|
|
|
VALUE string = newStringUTF8(RSTRING_PTR(scriptDecoded),
|
|
|
|
RSTRING_LEN(scriptDecoded));
|
2014-04-10 12:00:05 +00:00
|
|
|
|
2014-04-11 16:11:32 +00:00
|
|
|
VALUE fname;
|
|
|
|
if (shState->rtData().config.useScriptNames)
|
|
|
|
{
|
|
|
|
fname = rb_ary_entry(script, 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char buf[32];
|
2014-04-15 09:54:22 +00:00
|
|
|
int len = snprintf(buf, sizeof(buf), RGSS_SECTION_STR, i);
|
2014-04-11 16:11:32 +00:00
|
|
|
fname = newStringUTF8(buf, len);
|
|
|
|
}
|
2014-04-09 20:36:56 +00:00
|
|
|
|
2014-04-10 12:00:05 +00:00
|
|
|
int state;
|
2014-04-11 16:11:32 +00:00
|
|
|
evalString(string, fname, &state);
|
2014-04-10 12:00:05 +00:00
|
|
|
if (state)
|
2013-09-01 14:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-13 22:07:51 +00:00
|
|
|
static void showExc(VALUE exc)
|
|
|
|
{
|
|
|
|
VALUE bt = rb_funcall2(exc, rb_intern("backtrace"), 0, NULL);
|
|
|
|
VALUE bt0 = rb_ary_entry(bt, 0);
|
|
|
|
VALUE name = rb_class_path(rb_obj_class(exc));
|
|
|
|
|
|
|
|
VALUE ds = rb_sprintf("%" PRIsVALUE ": %" PRIsVALUE " (%" PRIsVALUE ")",
|
|
|
|
bt0, exc, name);
|
2014-04-16 18:05:15 +00:00
|
|
|
/* omit "useless" last entry (from ruby:1:in `eval') */
|
2014-04-13 22:07:51 +00:00
|
|
|
for (long i = 1, btlen = RARRAY_LEN(bt) - 1; i < btlen; ++i)
|
|
|
|
rb_str_catf(ds, "\n\tfrom %" PRIsVALUE, rb_ary_entry(bt, i));
|
|
|
|
Debug() << StringValueCStr(ds);
|
|
|
|
|
|
|
|
ID id_index = rb_intern("index");
|
2014-04-16 18:05:15 +00:00
|
|
|
/* an "offset" argument is not needed for the first time */
|
2014-04-13 22:07:51 +00:00
|
|
|
VALUE argv[2] = { rb_str_new_cstr(":") };
|
|
|
|
long filelen = NUM2LONG(rb_funcall2(bt0, id_index, 1, argv));
|
|
|
|
argv[1] = LONG2NUM(filelen + 1);
|
|
|
|
VALUE tmp = rb_funcall2(bt0, id_index, ARRAY_SIZE(argv), argv);
|
|
|
|
long linelen = NUM2LONG(tmp) - filelen - 1;
|
|
|
|
VALUE file = rb_str_subseq(bt0, 0, filelen);
|
|
|
|
VALUE line = rb_str_subseq(bt0, filelen + 1, linelen);
|
|
|
|
VALUE ms = rb_sprintf("Script '%" PRIsVALUE "' line %" PRIsVALUE
|
|
|
|
": %" PRIsVALUE " occured.\n\n%" PRIsVALUE,
|
|
|
|
file, line, name, exc);
|
|
|
|
showMsg(StringValueCStr(ms));
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
static void mriBindingExecute()
|
|
|
|
{
|
|
|
|
ruby_setup();
|
2013-10-19 16:57:34 +00:00
|
|
|
rb_enc_set_default_external(rb_enc_from_encoding(rb_utf8_encoding()));
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
RbData rbData;
|
2013-10-09 10:30:33 +00:00
|
|
|
shState->setBindingData(&rbData);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
mriBindingInit();
|
|
|
|
|
2013-12-11 19:46:54 +00:00
|
|
|
std::string &customScript = shState->rtData().config.customScript;
|
|
|
|
if (!customScript.empty())
|
2014-04-11 14:40:49 +00:00
|
|
|
runCustomScript(customScript);
|
2013-09-01 14:27:21 +00:00
|
|
|
else
|
|
|
|
runRMXPScripts();
|
|
|
|
|
2014-01-24 21:23:30 +00:00
|
|
|
VALUE exc = rb_errinfo();
|
|
|
|
if (!NIL_P(exc) && !rb_obj_is_kind_of(exc, rb_eSystemExit))
|
2014-04-13 22:07:51 +00:00
|
|
|
showExc(exc);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
ruby_cleanup(0);
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
shState->rtData().rqTermAck = true;
|
2013-09-01 14:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void mriBindingTerminate()
|
|
|
|
{
|
|
|
|
rb_raise(rb_eSystemExit, " ");
|
|
|
|
}
|