aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/ks/advtrains_signals_ks_zs_top.obj
diff options
context:
space:
mode:
authorywang <yw05@forksworld.de>2020-12-19 19:40:13 +0100
committerywang <yw05@forksworld.de>2020-12-19 19:40:13 +0100
commit5659134c8c88bd4c54e76da3e8db570917722fac (patch)
tree3a9f461fe9fe338b6271c5c350aa65e634a43e35 /assets/blender/ks/advtrains_signals_ks_zs_top.obj
parentd6acadf018c54d4a41c9f4d854b82f7f4cf099bc (diff)
downloadadvtrains-5659134c8c88bd4c54e76da3e8db570917722fac.tar.gz
advtrains-5659134c8c88bd4c54e76da3e8db570917722fac.tar.bz2
advtrains-5659134c8c88bd4c54e76da3e8db570917722fac.zip
Improved speed indication
The speed indicator is now shown on 4 lines: Line 1: ATC target speed (blue arrow pointing down) Line 2: Train velocity (black line) Line 3: Speed limit (if any) (red line) Line 4: Next speed limit (red arrow pointing up)
Diffstat (limited to 'assets/blender/ks/advtrains_signals_ks_zs_top.obj')
0 files changed, 0 insertions, 0 deletions
t">, TK_EOS }; /* number of reserved words */ #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1)) /* array with token `names' */ LUAI_DATA const char *const luaX_tokens []; typedef union { lua_Number r; TString *ts; } SemInfo; /* semantics information */ typedef struct Token { int token; SemInfo seminfo; } Token; typedef struct LexState { int current; /* current character (charint) */ int linenumber; /* input line counter */ int lastline; /* line of last token `consumed' */ Token t; /* current token */ Token lookahead; /* look ahead token */ struct FuncState *fs; /* `FuncState' is private to the parser */ struct lua_State *L; ZIO *z; /* input stream */ Mbuffer *buff; /* buffer for tokens */ TString *source; /* current source name */ char decpoint; /* locale decimal point */ } LexState; LUAI_FUNC void luaX_init (lua_State *L); LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source); LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); LUAI_FUNC void luaX_next (LexState *ls); LUAI_FUNC void luaX_lookahead (LexState *ls); LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); #endif