mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 12:30:42 +00:00
b3474c75b2
This makes savegames practically the same as the initial snapshot of a demo. Saves are now named 'dukesavX.esv' (demos: 'edemoX.edm'). Additionally, many changes that couldn't/needn't be cleanly separated are added with this commit: - make spriteext_t have the same size across 32/64 bit platforms (actor_t partially) - prevent saving/loading in MP games (it certainly didn't work and still doesn't) - it's time we start using assertions! Define NDEBUG for releasse builds. - reset savegame major and minor versions (we have a new magic string, so no conflict) git-svn-id: https://svn.eduke32.com/eduke32@2207 1a8010ca-5511-0410-912e-c29ae57300e0
57 lines
1.7 KiB
C
57 lines
1.7 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
This file is part of EDuke32.
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 2
|
|
as published by the Free Software Foundation.
|
|
|
|
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 the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
#ifndef __demo_h__
|
|
#define __demo_h__
|
|
|
|
extern FILE *g_demo_filePtr;
|
|
extern char firstdemofile[BMAX_PATH];
|
|
|
|
extern int32_t demoplay_diffs;
|
|
extern int32_t demoplay_showsync;
|
|
extern int32_t demorec_diffcompress_cvar;
|
|
extern int32_t demorec_diffs_cvar;
|
|
extern int32_t demorec_difftics_cvar;
|
|
extern int32_t demorec_force_cvar;
|
|
extern int32_t demorec_seeds_cvar;
|
|
extern int32_t demorec_synccompress_cvar;
|
|
extern int32_t g_demo_cnt;
|
|
extern int32_t g_demo_goalCnt;
|
|
extern int32_t g_demo_paused;
|
|
extern int32_t g_demo_recFilePtr;
|
|
extern int32_t g_demo_rewind;
|
|
extern int32_t g_demo_showStats;
|
|
extern int32_t g_demo_soundToggle;
|
|
extern int32_t g_demo_totalCnt;
|
|
|
|
int32_t G_PlaybackDemo(void);
|
|
void demo_preparewarp(void);
|
|
void G_CloseDemoWrite(void);
|
|
void G_DemoRecord(void);
|
|
void G_OpenDemoWrite(void);
|
|
|
|
#if KRANDDEBUG
|
|
int32_t krd_print(const char *filename);
|
|
void krd_enable(int32_t which);
|
|
#endif
|
|
|
|
#endif
|