misc/liblua/lundump.h
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Jun 2020 15:40:51 +0200
changeset 15597 6e72bd61002e
parent 10017 de822cd3df3a
permissions -rw-r--r--
Disable gfMoreWind for land objects on turn end only after a fixed-time delay 15s sounds much, but it's the average amount for gfMineStrike mines to settle naturally. And it would be very confusing to see falling mines suddenly not caring about gfMoreWind for no apparent reason. Note this whole thing is a giant hack anyway, to prevent a turn being blocked by infinitely bouncing mines. The better solution would be to help gfMoreWind-affected land objects settle naturally more reliably even under extreme wind. But this commit is "good enough" for now. If you don't like the delay, you can always tweak the constant.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     1
/*
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     2
** $Id: lundump.h,v 1.37.1.1 2007/12/27 13:02:25 roberto Exp $
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     3
** load precompiled Lua chunks
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     4
** See Copyright Notice in lua.h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     5
*/
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     6
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     7
#ifndef lundump_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     8
#define lundump_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     9
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    10
#include "lobject.h"
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    11
#include "lzio.h"
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    12
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    13
/* load one chunk; from lundump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    14
LUAI_FUNC Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    15
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    16
/* make header; from lundump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    17
LUAI_FUNC void luaU_header (char* h);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    18
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    19
/* dump one chunk; from ldump.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    20
LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    21
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    22
#ifdef luac_c
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    23
/* print one chunk; from print.c */
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    24
LUAI_FUNC void luaU_print (const Proto* f, int full);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    25
#endif
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    26
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    27
/* for header of binary files -- this is Lua 5.1 */
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    28
#define LUAC_VERSION        0x51
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    29
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    30
/* for header of binary files -- this is the official format */
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    31
#define LUAC_FORMAT     0
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    32
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    33
/* size of header of binary files */
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    34
#define LUAC_HEADERSIZE     12
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    35
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    36
#endif