mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
c3f41e3e69
specify the step for calculating nextthink. accessed using [frame, think, step] (state is [frame, think])
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/*
|
|
opcodes.h
|
|
|
|
opcode searching
|
|
|
|
Copyright (C) 2002 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2002/06/04
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
$Id$
|
|
*/
|
|
|
|
#ifndef __opcodes_h
|
|
#define __opcodes_h
|
|
|
|
extern struct opcode_s *op_done;
|
|
extern struct opcode_s *op_return;
|
|
extern struct opcode_s *op_if;
|
|
extern struct opcode_s *op_ifnot;
|
|
extern struct opcode_s *op_ifbe;
|
|
extern struct opcode_s *op_ifb;
|
|
extern struct opcode_s *op_ifae;
|
|
extern struct opcode_s *op_ifa;
|
|
extern struct opcode_s *op_state;
|
|
extern struct opcode_s *op_state_f;
|
|
extern struct opcode_s *op_goto;
|
|
extern struct opcode_s *op_jump;
|
|
extern struct opcode_s *op_jumpb;
|
|
|
|
struct type_s;
|
|
|
|
struct opcode_s *opcode_find (const char *name, struct type_s *type_a,
|
|
struct type_s *type_b, struct type_s *type_c);
|
|
void opcode_init (void);
|
|
|
|
#endif//__opcodes_h
|