mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
e746e39738
I wound up needing the idioms in too many places.
72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
/*
|
|
pr_opcode.c
|
|
|
|
Ruamoko instruction set opcode tables.
|
|
|
|
Copyright (C) 2022 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2022/1/4
|
|
|
|
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
|
|
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "QF/progs.h"
|
|
|
|
#define EV_TYPE(type) PR_SIZEOF(type),
|
|
VISIBLE const pr_ushort_t pr_type_size[ev_type_count] = {
|
|
#include "QF/progs/pr_type_names.h"
|
|
0, // ev_invalid not a valid/simple type
|
|
};
|
|
|
|
#define EV_TYPE(type) PR_ALIGNOF(type),
|
|
VISIBLE const pr_ushort_t pr_type_alignment[ev_type_count] = {
|
|
#include "QF/progs/pr_type_names.h"
|
|
0, // ev_invalid not a valid/simple type
|
|
};
|
|
|
|
#define EV_TYPE(type) #type,
|
|
VISIBLE const char * const pr_type_name[ev_type_count] = {
|
|
#include "QF/progs/pr_type_names.h"
|
|
"invalid",
|
|
};
|
|
|
|
const opcode_t pr_opcodes[512] = {
|
|
#include "libs/gamecode/pr_opcode.cinc"
|
|
};
|
|
|
|
const opcode_t *
|
|
PR_Opcode (pr_ushort_t opcode)
|
|
{
|
|
opcode &= OP_MASK;
|
|
return &pr_opcodes[opcode];
|
|
}
|
|
|
|
int
|
|
PR_Check_Opcodes (progs_t *pr)
|
|
{
|
|
if (pr->progs->version < PROG_VERSION) {
|
|
return PR_Check_v6p_Opcodes (pr);
|
|
}
|
|
return 1;
|
|
}
|