misc/liblua/lfunc.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 03 Jan 2019 19:46:48 +0100
changeset 14519 5ac181cb2396
parent 10017 de822cd3df3a
permissions -rw-r--r--
Fix bee targeting fail across wrap world edge Previously, the bee always aimed for the light area, no matter where you actually put the target. It also got confused whenever it flew across the wrap world edge. How the bee works now: 1) The placed bee target is *not* recalculated when it was placed in the "gray" part of the wrap world edge. This allows for more fine-tuning. 1a) Place target in light area: bee aims for target light area 1b) Place target in gray area: bee aims for target, but flies to gray area first 2) Bee target is recalculated whenever bee passes the wrap world edge.
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: lfunc.h,v 2.4.1.1 2007/12/27 13:02:25 roberto Exp $
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     3
** Auxiliary functions to manipulate prototypes and closures
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 lfunc_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     8
#define lfunc_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
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    11
#include "lobject.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
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    14
#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    15
                         cast(int, sizeof(TValue)*((n)-1)))
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    16
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    17
#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    18
                         cast(int, sizeof(TValue *)*((n)-1)))
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    19
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    20
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    21
LUAI_FUNC Proto *luaF_newproto (lua_State *L);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    22
LUAI_FUNC Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    23
LUAI_FUNC Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    24
LUAI_FUNC UpVal *luaF_newupval (lua_State *L);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    25
LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    26
LUAI_FUNC void luaF_close (lua_State *L, StkId level);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    27
LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    28
LUAI_FUNC void luaF_freeclosure (lua_State *L, Closure *c);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    29
LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    30
LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    31
                                         int pc);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    32
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    33
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    34
#endif