mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
Merge branch 'master' of https://github.com/pikastech/pikascript into master
This commit is contained in:
commit
495035fd59
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "BaseObj.h"
|
||||
#include "PikaObj.h"
|
||||
#include "TinyObj.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _PikaObj_baseObj__H
|
||||
#define _PikaObj_baseObj__H
|
||||
#include "PikaObj.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "PikaBlock.h"
|
||||
#include <stdarg.h>
|
||||
#include "PikaObj.h"
|
||||
@ -80,4 +85,4 @@ char* block_popLine(PikaObj* self) {
|
||||
obj_setInt(self, "lineSize", obj_getInt(self, "lineSize") - 1);
|
||||
args_deinit(buffs);
|
||||
return obj_getStr(self, "lineNow");
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _pikaBlock__H
|
||||
#define _pikaBlock__H
|
||||
#include "PikaObj.h"
|
||||
@ -14,4 +19,4 @@ uint16_t block_getLineSize(PikaObj* self);
|
||||
void block_setMode(PikaObj* self, char* mode);
|
||||
char* block_getMode(PikaObj* self);
|
||||
void block_setBody(PikaObj* self, char* body);
|
||||
#endif
|
||||
#endif
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "PikaIf.h"
|
||||
#include <stdarg.h>
|
||||
#include "PikaBlock.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _pikaIf__H
|
||||
#define _pikaIf__H
|
||||
#include "PikaObj.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include "PikaObj.h"
|
||||
#include "dataArgs.h"
|
||||
|
@ -1,4 +1,9 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _invoke__H
|
||||
#define _invoke__H
|
||||
Args* obj_invoke(PikaObj* self, char* cmd);
|
||||
#endif
|
||||
#endif
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "PikaObj.h"
|
||||
#include <stdarg.h>
|
||||
#include "PikaBlock.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _Process__H
|
||||
#define _Process__H
|
||||
#include "dataArgs.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
#include "PikaBlock.h"
|
||||
#include "PikaObj.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _pikaWhile__H
|
||||
#define _pikaWhile__H
|
||||
#include "PikaObj.h"
|
||||
@ -6,4 +11,4 @@ void while_setAssert(PikaObj* self, char* line);
|
||||
void while_pushLine(PikaObj* self, char* line);
|
||||
void while_run(PikaObj* self);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "PikaObj.h"
|
||||
|
||||
void _UpdateHandle(PikaObj* self) {
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef __TYNYOBJ__H
|
||||
#define __TYNYOBJ__H
|
||||
#include "PikaObj.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataArg.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _arg__H
|
||||
#define _arg__H
|
||||
#include "dataMemory.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataArgs.h"
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _dataArgs__H
|
||||
#define _dataArgs__H
|
||||
#include "dataArg.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataLink.h"
|
||||
#include "dataArg.h"
|
||||
#include "dataLinkNode.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _link2__H
|
||||
#define _link2__H
|
||||
#include "dataLinkNode.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataLinkNode.h"
|
||||
#include "dataArg.h"
|
||||
#include "dataMemory.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef _linkNode__H
|
||||
#define _linkNode__H
|
||||
#include "dataMemory.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataMemory.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef __MEMORY_H__
|
||||
#define __MEMORY_H__
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataString.h"
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef __MY_TEST_TOOLS_H
|
||||
#define __MY_TEST_TOOLS_H
|
||||
#include <stdint.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "dataStrs.h"
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef __STR_ARGS__H
|
||||
#define __STR_ARGS__H
|
||||
#include "dataArgs.h"
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#include "PikaObj.h"
|
||||
#include "dataArgs.h"
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
/*
|
||||
Author: lyon
|
||||
Tencent QQ: 645275593
|
||||
*/
|
||||
|
||||
#ifndef METHOD__H
|
||||
#define METHOD__H
|
||||
#include "dataArgs.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user