mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
3e5e956b72
The remaining excpetions are the "give" CCMD and any level change action. Unfortunately the implementation of most cheats is not multiplayer safe so right now it'd only be useful for demo recording (assuming that worked to begin with... ;))
21 lines
429 B
C
21 lines
429 B
C
#pragma once
|
|
|
|
struct cheatseq_t
|
|
{
|
|
const char *Sequence;
|
|
const char* ccmd;
|
|
bool (*Handler)(cheatseq_t *);
|
|
uint8_t DontCheck;
|
|
uint8_t Param;
|
|
// This is working data for processing the cheat
|
|
uint8_t CurrentArg;
|
|
uint8_t Args[6];
|
|
const char *Pos;
|
|
};
|
|
struct event_t;
|
|
|
|
bool Cheat_Responder(event_t* ev);
|
|
void SetCheats(cheatseq_t *cht, int count);
|
|
void PlaybackCheat(const char* p);
|
|
bool SendGenericCheat(cheatseq_t* cheat);
|
|
|