misc/liblua/ldebug.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: ldebug.h,v 2.3.1.1 2007/12/27 13:02:25 roberto Exp $
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     3
** Auxiliary functions from Debug Interface module
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 ldebug_h
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
     8
#define ldebug_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 "lstate.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 pcRel(pc, p)    (cast(int, (pc) - (p)->code) - 1)
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    15
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    16
#define getline(f,pc)   (((f)->lineinfo) ? (f)->lineinfo[pc] : 0)
2812
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    17
10017
de822cd3df3a fixwhitespace and dos2unix
koda
parents: 2812
diff changeset
    18
#define resethookcount(L)   (L->hookcount = L->basehookcount)
2812
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 void luaG_typeerror (lua_State *L, const TValue *o,
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    22
                                             const char *opname);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    23
LUAI_FUNC void luaG_concaterror (lua_State *L, StkId p1, StkId p2);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    24
LUAI_FUNC void luaG_aritherror (lua_State *L, const TValue *p1,
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    25
                                              const TValue *p2);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    26
LUAI_FUNC int luaG_ordererror (lua_State *L, const TValue *p1,
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    27
                                             const TValue *p2);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    28
LUAI_FUNC void luaG_runerror (lua_State *L, const char *fmt, ...);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    29
LUAI_FUNC void luaG_errormsg (lua_State *L);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    30
LUAI_FUNC int luaG_checkcode (const Proto *pt);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    31
LUAI_FUNC int luaG_checkopenop (Instruction i);
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    32
0a24853de796 add liblua to sources for macosx
koda
parents:
diff changeset
    33
#endif