2017-04-18 02:40:39 +00:00
|
|
|
/*
|
2018-05-18 03:41:20 +00:00
|
|
|
* Copyright (c) 2018 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
#include <dst/dst.h>
|
2018-01-19 21:43:19 +00:00
|
|
|
#include <dst/dstcompile.h>
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2018-03-18 13:13:21 +00:00
|
|
|
#include "clientinit.gen.h"
|
2018-03-14 03:39:49 +00:00
|
|
|
#include "line.h"
|
2018-01-30 04:38:49 +00:00
|
|
|
|
2017-12-30 21:46:59 +00:00
|
|
|
int main(int argc, char **argv) {
|
2018-02-07 05:44:51 +00:00
|
|
|
int i, status;
|
|
|
|
DstArray *args;
|
2018-01-18 22:25:45 +00:00
|
|
|
DstTable *env;
|
2017-04-18 02:14:35 +00:00
|
|
|
|
2017-07-02 02:34:31 +00:00
|
|
|
/* Set up VM */
|
2017-12-30 21:46:59 +00:00
|
|
|
dst_init();
|
2018-05-15 01:52:51 +00:00
|
|
|
env = dst_stl_env(0);
|
2017-06-24 18:27:29 +00:00
|
|
|
|
2018-05-10 15:11:18 +00:00
|
|
|
/* Create args tuple */
|
2018-02-07 05:44:51 +00:00
|
|
|
args = dst_array(argc);
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
dst_array_push(args, dst_cstringv(argv[i]));
|
2017-07-02 02:34:31 +00:00
|
|
|
}
|
2018-02-07 05:44:51 +00:00
|
|
|
dst_env_def(env, "args", dst_wrap_array(args));
|
|
|
|
|
2018-03-14 03:39:49 +00:00
|
|
|
/* Expose line getter */
|
|
|
|
dst_env_def(env, "getline", dst_wrap_cfunction(dst_line_getter));
|
|
|
|
dst_line_init();
|
|
|
|
|
2018-02-07 05:44:51 +00:00
|
|
|
/* Run startup script */
|
2018-06-29 03:36:31 +00:00
|
|
|
status = dst_dobytes(env, dst_mainclient_init, sizeof(dst_mainclient_init), "init.dst");
|
2017-04-17 04:15:18 +00:00
|
|
|
|
2018-02-07 05:44:51 +00:00
|
|
|
/* Deinitialize vm */
|
2017-12-30 21:46:59 +00:00
|
|
|
dst_deinit();
|
2018-03-14 03:39:49 +00:00
|
|
|
dst_line_deinit();
|
2017-04-17 04:15:18 +00:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|