2016-04-18 04:25:36 -04:00
|
|
|
#ifndef PEBBLISP_H
|
|
|
|
#define PEBBLISP_H
|
|
|
|
|
2020-05-04 18:14:41 -04:00
|
|
|
#include "object.h"
|
2020-05-10 13:51:33 -04:00
|
|
|
#include "env.h"
|
2016-04-18 04:25:36 -04:00
|
|
|
|
2020-05-06 00:47:14 -04:00
|
|
|
#ifndef STANDALONE
|
|
|
|
#include <pebble.h>
|
2021-07-21 14:31:40 -04:00
|
|
|
#define printd(...) ;
|
2020-05-06 00:47:14 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define printd(...) printf(__VA_ARGS__)
|
|
|
|
#else
|
2021-07-21 14:31:40 -04:00
|
|
|
#define printd(...) ;
|
2020-05-06 00:47:14 -04:00
|
|
|
#endif
|
|
|
|
|
2016-04-18 04:25:36 -04:00
|
|
|
struct Slice {
|
|
|
|
const char *text;
|
2020-05-04 18:14:41 -04:00
|
|
|
char length;
|
2016-04-18 04:25:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct Result {
|
|
|
|
Object obj;
|
|
|
|
struct Slice *slices;
|
|
|
|
} Result;
|
|
|
|
|
2020-05-04 10:03:35 -04:00
|
|
|
Object eval(const Object *obj, struct Environment *env);
|
2016-04-18 04:25:36 -04:00
|
|
|
Result parse(struct Slice *slices);
|
|
|
|
Result readSeq(struct Slice *slices);
|
|
|
|
Object parseAtom(struct Slice *slice);
|
|
|
|
Object parseEval(const char *input, struct Environment *env);
|
2020-08-02 16:16:26 -04:00
|
|
|
void evalForms(Object *destList, const Object *src, struct Environment *env);
|
|
|
|
void copySlice(char * dest, struct Slice *src);
|
2020-05-05 13:42:28 -04:00
|
|
|
|
2020-05-05 19:21:54 -04:00
|
|
|
Object evalLambdaArgs(const Object *arg_forms);
|
|
|
|
|
2020-05-04 18:14:41 -04:00
|
|
|
// Slices
|
|
|
|
void copySlice(char * dest, struct Slice *src);
|
|
|
|
void debugSlice(struct Slice *s);
|
|
|
|
|
2020-05-14 23:51:59 -04:00
|
|
|
#define BASIC_OP(_name) \
|
2020-05-10 13:51:33 -04:00
|
|
|
Object _name(Object obj1, Object obj2, struct Environment *env);
|
2020-05-14 23:51:59 -04:00
|
|
|
BASIC_OP(add); BASIC_OP(sub);
|
|
|
|
BASIC_OP(mul); BASIC_OP(dvi);
|
|
|
|
BASIC_OP(mod); BASIC_OP(equ);
|
|
|
|
BASIC_OP(gth); BASIC_OP(lth);
|
|
|
|
#undef BASIC_OP
|
2020-08-02 16:16:26 -04:00
|
|
|
|
2020-05-10 13:51:33 -04:00
|
|
|
Object catObjects(const Object obj1, const Object obj2, struct Environment *env);
|
2020-05-22 01:16:45 -04:00
|
|
|
Object filter(Object obj1, Object obj2, struct Environment *env);
|
2020-05-28 10:28:28 -04:00
|
|
|
Object append(Object list, Object newElement, struct Environment *env);
|
2020-10-29 11:23:35 -04:00
|
|
|
Object prepend(Object list, Object newElement, struct Environment *env);
|
2020-05-28 10:28:28 -04:00
|
|
|
Object at(Object index, Object list, struct Environment *env);
|
|
|
|
Object rest(Object list, Object ignore, struct Environment *env);
|
|
|
|
Object reverse(Object _list, Object ignore, struct Environment *ignore2);
|
2020-05-10 13:51:33 -04:00
|
|
|
|
2020-10-28 18:08:03 -04:00
|
|
|
Object isNum(Object test, Object ignore, struct Environment *ignore2);
|
2020-11-02 15:29:03 -05:00
|
|
|
Object isString(Object test, Object ignore, struct Environment *ignore2);
|
2020-11-06 15:07:12 -05:00
|
|
|
Object isErr(Object test, Object ignore, struct Environment *ignore2);
|
2020-10-28 18:08:03 -04:00
|
|
|
|
2021-12-10 16:33:59 -05:00
|
|
|
Object charAt(Object string, Object at, struct Environment *ignore);
|
|
|
|
Object charVal(Object test, Object ignore, struct Environment *ignore2);
|
|
|
|
|
2020-10-30 14:36:44 -04:00
|
|
|
Object print(Object p, Object ignore, struct Environment *ignore2);
|
2020-11-02 16:30:21 -05:00
|
|
|
Object pChar(Object c, Object i1, struct Environment *i2);
|
2020-11-02 12:40:42 -05:00
|
|
|
Object printEnvO(Object i1, Object i2, struct Environment *env);
|
2020-11-02 15:46:17 -05:00
|
|
|
Object parseEvalO(Object text, Object ignore, struct Environment *env);
|
2020-10-30 14:36:44 -04:00
|
|
|
|
2020-11-02 16:30:21 -05:00
|
|
|
#ifdef STANDALONE
|
|
|
|
Object takeInput(Object i1, Object i2, struct Environment *i3);
|
2021-12-10 16:33:59 -05:00
|
|
|
Object systemCall(Object call, Object _, struct Environment *i3);
|
2021-07-04 21:49:41 -04:00
|
|
|
Object loadFile(Object filename, Object _, struct Environment *env);
|
2020-11-02 16:30:21 -05:00
|
|
|
#endif
|
|
|
|
|
2016-04-18 04:25:36 -04:00
|
|
|
#endif
|