mirror of
https://github.com/kichikuou/xsystem35-sdl2.git
synced 2026-09-25 07:58:04 +03:00
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "portab.h"
|
|
#include "system.h"
|
|
#include "xsystem35.h"
|
|
#include "modules.h"
|
|
#include "nact.h"
|
|
|
|
|
|
static void Init() {
|
|
int p1 = getCaliValue();
|
|
int p2 = getCaliValue();
|
|
int p3 = getCaliValue();
|
|
int *var = getCaliVariable();
|
|
|
|
*var = 1;
|
|
|
|
TRACE_UNIMPLEMENTED("eeDEMO.Init %d,%d,%d,%p:", p1, p2, p3, var);
|
|
}
|
|
|
|
static void SetKeyCancelFlag() {
|
|
int cancelflag = getCaliValue();
|
|
|
|
TRACE_UNIMPLEMENTED("eeDEMO.SetKeyCancelFlag %d:", cancelflag);
|
|
}
|
|
|
|
static void SetLoopFlag() {
|
|
/* Loop Flag */
|
|
int loopflag = getCaliValue(); /* 0 なら無限繰り返し */
|
|
|
|
TRACE_UNIMPLEMENTED("eeDEMO.SetLoopFlag %d:", loopflag);
|
|
}
|
|
|
|
static void Run() {
|
|
int p1 = getCaliValue();
|
|
|
|
TRACE_UNIMPLEMENTED("eeDEMO.Run %d:", p1);
|
|
}
|
|
|
|
static const ModuleFunc functions[] = {
|
|
{"Init", Init},
|
|
{"Run", Run},
|
|
{"SetKeyCancelFlag", SetKeyCancelFlag},
|
|
{"SetLoopFlag", SetLoopFlag},
|
|
};
|
|
|
|
const Module module_eeDemo = {"eeDemo", functions, sizeof(functions) / sizeof(ModuleFunc)};
|