summaryrefslogtreecommitdiff
path: root/src/heretic/doomdef.h
AgeCommit message (Collapse)Author
2014-05-05Clean up file headers.Simon Howard
This change rewrites and simplifies the copyright headers at the top of all source files: * Remove "Emacs style mode select" line; this line was included in the headers for the originally released source files and appears to be to set the file type for old versions of Emacs. I'm not sure entirely why it was required but I don't think it is any more. * Remove "You should have received a copy of..." text from copyright header. This refers to the old 59 Temple Place address where the FSF headquarters used to be located and is no longer correct. Rather than change to the new address, just remove the paragraph as it is superfluous anyway. This fixes #311. * Remove ---- separator lines so that the file headers are barer and more simplified.
2013-10-15Remove gamemission variables for Heretic and Hexen and hard-code to theSimon Howard
appropriate values. Subversion-branch: /branches/v2-branch Subversion-revision: 2708
2013-09-24Add portable functions to read integers from savegame files and useSimon Howard
these instead of reading directly from memory buffers. Subversion-branch: /branches/v2-branch Subversion-revision: 2682
2013-09-24Split Heretic savegame code into a separate file.Simon Howard
Subversion-branch: /branches/v2-branch Subversion-revision: 2681
2011-10-29Enable gcc warning to detect redundant declarations, and clean upSimon Howard
instances of this within the code (thanks Edward-san). Subversion-branch: /branches/v2-branch Subversion-revision: 2468
2011-10-19Change MAXPLAYERS to NET_MAXPLAYERS and add back individual MAXPLAYERSSimon Howard
defines for each game. Refactor "waiting screen" data code. Subversion-branch: /branches/v2-branch Subversion-revision: 2441
2011-10-15Remove duplicate definitions.Simon Howard
Subversion-branch: /branches/v2-branch Subversion-revision: 2427
2011-10-13Convert Heretic code to use common main loop code. Working multiplayer!Simon Howard
Subversion-branch: /branches/v2-branch Subversion-revision: 2417
2011-09-25Fix special1/special2 values so that they can properly hold pointerSimon Howard
values. This fixes Heretic under 64-bit. Subversion-branch: /branches/v2-branch Subversion-revision: 2406
2011-09-24Add -testcontrols to Heretic.Simon Howard
Subversion-branch: /branches/v2-branch Subversion-revision: 2396
2011-09-05Store Heretic savegames in the configuration directory, as with DoomSimon Howard
savegames. Subversion-branch: /branches/raven-branch Subversion-revision: 2361
2010-02-07Move sound structure and ammo definitions into headers. Add #ifndefSimon Howard
guards around info.h. Subversion-branch: /branches/raven-branch Subversion-revision: 1857
2009-10-16Remove CR characters from code. Minor formatting cleanups toSimon Howard
heretic/doomdef.h. Subversion-branch: /branches/raven-branch Subversion-revision: 1719
2009-03-09Remove WATCOMC usage (thanks Quasar)Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1453
2008-11-02Fix up raven-branch copyright notices.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1375
2008-10-30Factor out Heretic and Hexen versions of m_misc.c. Make -file forSimon Howard
Heretic and Hexen use WAD path lookup. Subversion-branch: /branches/raven-branch Subversion-revision: 1368
2008-10-01Rename "FuzzColumn"/"FuzzPatch" for Heretic/Hexen code toSimon Howard
TLColumn/TLPatch for consistency; these are translucent draw functions, not fuzzy draw functions like Doom's R_DrawFuzzColumn. Subversion-branch: /branches/raven-branch Subversion-revision: 1313
2008-09-27Save Heretic configuration files on exit.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1294
2008-09-25Add mouse grab callback for Heretic.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1282
2008-09-24Add I_InitNetwork function into d_net.c temporarily.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1275
2008-09-24Replace all occurrences of long with int in the Heretic code.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1270
2008-09-24Remove redundant destscreen,destview variablesSimon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1267
2008-09-20Use common event queue code.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1263
2008-09-20Harmonise heretic code on TICRATE and use definition in i_timer.h.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1262
2008-09-20Remove definitions from heretic/doomdef.h and use common headers. MergeSimon Howard
heretic ticcmd_t to common type. Subversion-branch: /branches/raven-branch Subversion-revision: 1261
2008-09-20Remove heretic duplicate versions of M_AddToBox, M_ClearBox, SlopeDivSimon Howard
and use common versions. Subversion-branch: /branches/raven-branch Subversion-revision: 1260
2008-09-20Move m_random.[ch] to doom/ (as Hexen uses a different random numberSimon Howard
table). Split RNG code out of heretic/m_misc.c to a separate m_random.c. Subversion-branch: /branches/raven-branch Subversion-revision: 1256
2008-09-20Remove bits from heretic/m_misc.c that are in common; changeSimon Howard
V_ScreenShot to take a format string describing the format of the filename for the screen shot file. Subversion-branch: /branches/raven-branch Subversion-revision: 1255
2008-09-20Replace heretic "screen" variable with I_VideoBuffer.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1253
2008-09-20Merge heretic/v_video.c to common code.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1252
2008-09-17Remove heretic definitions for fixed math arithmetic and endiannessSimon Howard
conversion macros; use the ones from the common code. Subversion-branch: /branches/raven-branch Subversion-revision: 1242
2008-09-17Remove definitions from heretic/doomdef.h that are in common code.Simon Howard
Replace "shareware" variable with gamemode, as in doom code. Merge angle definitions into common code. Subversion-branch: /branches/raven-branch Subversion-revision: 1240
2008-09-17Convert MAXINT/MININT -> INT_MAX/INT_MIN in Heretic/Hexen code.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1234
2008-09-11Remove duplicate w_wad.c from heretic/.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1224
2008-09-05Remove z_zone.c and tables.c, as these are identical to the version inSimon Howard
Doom. Subversion-branch: /branches/raven-branch Subversion-revision: 1199
2008-09-05Fix #include statements to use lower case filenames. Add automakeSimon Howard
configuration for building heretic/hexen code. Subversion-branch: /branches/raven-branch Subversion-revision: 1198
2008-09-05Reformat (beautify) Raven sources and add GPL headers.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1197
2008-09-04Add GPLed Heretic/Hexen source.Simon Howard
Subversion-branch: /branches/raven-branch Subversion-revision: 1195