LOTS OF CHANGES. was hoping to get revision 5000 perfect, but really that's never going to happen. this has gone on for too long now.
vulkan, wasapi, quake injector features added. irc, avplug, cef plugins/drivers reworked/updated/added openal reverb, doppler effects added. 'dir' console command now attempts to view clicked files. lots of warning fixes, should now only be deprecation warnings for most targets (depending on compiler version anyway...). SendEntity finally reworked to use flags properly. effectinfo improved, other smc-targetted fixes. mapcluster stuff now has support for linux. .basebone+.baseframe now exist in ssqc. qcc: -Fqccx supports qccx syntax, including qccx hacks. don't expect these to work in fteqw nor dp though. qcc: rewrote function call handling to use refs rather than defs. this makes struct passing more efficient and makes the __out keyword usable with fields etc. qccgui: can cope a little better with non-unicode files. can now represent most quake chars. qcc: suppressed warnings from *extensions.qc git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5000 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5920bf05fb
commit
27a59a0cbc
271 changed files with 101001 additions and 64352 deletions
|
@ -22,6 +22,7 @@ typedef struct vm_s vm_t;
|
|||
void VM_PrintInfo(vm_t *vm);
|
||||
vm_t *VM_CreateBuiltin(const char *name, sys_calldll_t syscalldll, qintptr_t (*init)(qintptr_t *args));
|
||||
vm_t *VM_Create(const char *name, sys_calldll_t syscalldll, sys_callqvm_t syscallqvm);
|
||||
const char *VM_GetFilename(vm_t *vm);
|
||||
void VM_Destroy(vm_t *vm);
|
||||
//qboolean VM_Restart(vm_t *vm);
|
||||
qintptr_t VARGS VM_Call(vm_t *vm, qintptr_t instruction, ...);
|
||||
|
@ -37,7 +38,7 @@ qboolean Plug_CenterPrintMessage(char *buffer, int clientnum);
|
|||
qboolean Plug_ChatMessage(char *buffer, int talkernum, int tpflags);
|
||||
void Plug_Command_f(void);
|
||||
int Plug_ConnectionlessClientPacket(char *buffer, int size);
|
||||
qboolean Plug_ConsoleLink(char *text, char *info);
|
||||
qboolean Plug_ConsoleLink(char *text, char *info, const char *consolename);
|
||||
qboolean Plug_ConsoleLinkMouseOver(float x, float y, char *text, char *info);
|
||||
void Plug_DrawReloadImages(void);
|
||||
void Plug_Initialise(qboolean fromgamedir);
|
||||
|
@ -73,7 +74,6 @@ void UI_Reset(void);
|
|||
void UI_DrawMenu(void);
|
||||
qboolean UI_DrawStatusBar(int scores);
|
||||
qboolean UI_DrawIntermission(void);
|
||||
qboolean UI_DrawFinale(void);
|
||||
int UI_MenuState(void);
|
||||
|
||||
//sans botlib
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue