summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2005-09-22Remove external statistics driver support (-statcopy):Simon Howard
nonfunctional on modern systems and never used. Fix for systems where sizeof(int) != sizeof(void *) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 120
2005-09-22Use a new PU_FREE tag to mark free blocks, rather than the 'user' fieldSimon Howard
(avoids using magic numbers to mark allocated blocks with no user) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 119
2005-09-20Generate chocolate-doom-res.rc with version and product infoSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 118
2005-09-20Conditionally build the resource file, dependent on whether windres existsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 117
2005-09-20Include icon in exe, rather than the default icon. Thanks to Joe KennedySimon Howard
for drawing this icon. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 115
2005-09-17Mouse acceleration code to emulate old DOS driversSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 111
2005-09-17Set the default values for variables in their initialisers. Remove theSimon Howard
"defaultvalue" parameter and associated code from the configuration file parsing code. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 110
2005-09-17Rewrite configuration loading code; assign a type to each configurationSimon Howard
parameter. Allow float parameters, align all values in the configuration files Subversion-branch: /trunk/chocolate-doom Subversion-revision: 109
2005-09-14Fix startup messages displayed (build a console binary; remove CONSimon Howard
redirection code) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 106
2005-09-14Lock surfaces properly when we have to (fixes crash under Windows 98)Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 105
2005-09-11Remove temporary MIDI files generated by sound code.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 102
2005-09-11Fix sounds playing at the wrong volume (too quiet)Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 101
2005-09-11Second configuration file to allow chocolate doom-specific settings.Simon Howard
Adjust some existing command line logic (for graphics settings and novert) to adjust for this. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 98
2005-09-11Fix declaration of I_Sleep (not I_Delay) and move to right headerSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 97
2005-09-11Missing declarationsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 96
2005-09-08Delay calls so we don't use the entire CPUSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 95
2005-09-08Allow alt-tab away while running fullscreenSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 94
2005-09-08MAXINTERCEPTS got converted to INT_MAXERCEPTS accidentally when switchingSimon Howard
to the ANSI standard limit constants Subversion-branch: /trunk/chocolate-doom Subversion-revision: 93
2005-09-08Fix switches not changing in Episode 4Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 91
2005-09-07No SIGHUP on WindowsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 89
2005-09-07Modify the sound effect caching behaviour: sounds which are not playingSimon Howard
are now marked as PU_CACHE; it is otherwise possible to run out of memory. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 87
2005-09-07Catch signals and exit cleanlySimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 86
2005-09-07Remove non-ANSI C headers and functionsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 85
2005-09-07Remove non-ANSI C headers. Use standard C file I/O functions.Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 84
2005-09-07Fix up names of functionsSimon Howard
Make the quit button work (pops up the "quit doom?" prompt). Fix focus detection to release the mouse and ignore mouse events when window is not focused. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 83
2005-09-07Maintain dos-specific options in config fileSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 82
2005-09-06Restore -nosound, -nosfx, -nomusicSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 80
2005-09-06Setting music volumeSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 79
2005-09-06Silly me - i misread cph's patch and got the logic backwardsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 78
2005-09-06Working music!Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 77
2005-09-06Newer versions of mmus2mid.c,h from prboomSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 76
2005-09-05Add mmus2mid code from prboom. Use 'void *' for music handles. PassSimon Howard
length of data when registering music. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 75
2005-09-0516-bit soundSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 74
2005-09-05Use the system-nonspecific sound code to assign the channel number usedSimon Howard
by SDL. Remove handle tagging stuff. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 73
2005-09-04Remove dead code. Cope with the screen not having width == pitch. LockSimon Howard
the SDL screen surface properly. Rewrite 2x scaling code. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 72
2005-09-04shut up compiler warningsSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 71
2005-09-04Support demos recorded with cph's modified "v1.91" doom exe - whichSimon Howard
contain higher resolution angleturn Subversion-branch: /trunk/chocolate-doom Subversion-revision: 70
2005-09-04'novert' command line option to disable vertical mouse movementSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 69
2005-09-04Support the old "joyb_speed 31" hack to allow autorunSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 68
2005-09-04Doom v1.9 doesnt allow cheats in nightmare mode!Simon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 67
2005-09-04Display the correct quit messages according to which game is being played.Simon Howard
Remove "language" variable (do this through gettext, if ever) Subversion-branch: /trunk/chocolate-doom Subversion-revision: 66
2005-09-01-nograbmouse optionSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 64
2005-08-31smarter mouse grabbing for windowed modeSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 63
2005-08-31Nicer banner showing the game type (once we know). Remove dead code.Simon Howard
Find the config file properly. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 62
2005-08-31Display the game name in the title bar. Move game start code to laterSimon Howard
in initialisation because of the IWAD detection changes. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 61
2005-08-31Remove the last traces of NORMALUNIXSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 60
2005-08-31Better IWAD detection and identification. Support '-iwad' to specifySimon Howard
the IWAD to use. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 59
2005-08-30More Windows fixesSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 58
2005-08-30Windows fixesSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 57
2005-08-29Add missing header to fix buildSimon Howard
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 56