Braden Obrzut
1b5bff9603
- Fixed: Solaris compile.
...
SVN r3928 (trunk)
2012-11-01 18:23:39 +00:00
Braden Obrzut
3ec5f7ed88
- Run down the semaphores so they behave more like a mutex (note: mutexes/condition variables seem to be much slower).
...
- Fixed: vid_maxfps and cl_capfps could run into a deadlock on Linux based operating systems.
SVN r3900 (trunk)
2012-10-22 23:42:20 +00:00
Braden Obrzut
df5d43badf
- OK, so we can't have vid_maxfps on OS X since there does not appear to be an equivalent to POSIX timers. The only thing I could find would require Objective-C and an event loop.
...
SVN r3892 (trunk)
2012-10-18 00:57:56 +00:00
Braden Obrzut
1907983ab7
- Ported frame rate limiting code to SDL.
...
SVN r3891 (trunk)
2012-10-17 19:45:04 +00:00
Randy Heit
11ca707485
- Added vid_maxfps cvar to limit the frame rate to some arbitrary rate between 35 and 1000 FPS. It
...
defaults to 200. Setting it to 0 will restore the previous behavior of having no frame rate
limit. Note that vid_maxfps 35 is NOT the same as cl_capfps 1. cl_capfps caps the frame rate
by tying the video update directly to the game timer. With vid_maxfps 35, the video update and
game timer are running on separate timers, and results will not be as good as with cl_capfps 1,
which uses only one timer.
SVN r3872 (trunk)
2012-09-16 04:40:56 +00:00
Randy Heit
fd784b05c2
- Fix some GCC 4.7.1 warnings.
...
SVN r3747 (trunk)
2012-07-07 03:43:11 +00:00
Randy Heit
c197d0687c
- Fixed: FinalGC() needs to run before the type system is shut down.
...
- Fixed: Don't access class metadata at all in DObject::PropagateMark if the type system is shutdown.
- Fixed: If FCompressedMemFile::Reopen() fails, then it would try to double-free memory when deleted.
SVN r3688 (trunk)
2012-06-16 03:10:38 +00:00
Braden Obrzut
9e26f3b7a4
- Instead of a huge switch statement, lets convert POV to axes by bitwise operations since we later assume we can do that for the button mapping anyways.
...
SVN r3609 (trunk)
2012-05-01 01:53:59 +00:00
Braden Obrzut
192839a436
- Added button mapping for the first 8 axes for SDL joysticks. The first two axes are assumed to be x/y.
...
- Added POV hat support for SDL. (First 4 map to buttons, but all map to an x/y axis.)
SVN r3607 (trunk)
2012-04-29 00:53:27 +00:00
Braden Obrzut
0065c29902
- Added deadzone handling to SDL joystick support.
...
SVN r3605 (trunk)
2012-04-28 03:44:10 +00:00
Randy Heit
6ea93d28e2
- Fixed: M_CreateMenus() is too soon to call UpdateJoystickMenu(). It needs to happen after
...
I_InitInput(), which happens during V_Init2().
SVN r3501 (trunk)
2012-04-01 03:03:53 +00:00
Braden Obrzut
449bd90121
- Fixed: Runtime error on Mac OS X. For whatever reason merely having the call to CFUserNotificationDisplayAlert() in I_FatalError caused exception handling to quit working. Moving it to a separate file seems to fix this. Also removed the warning about FRenderer having a non-virtual destructor.
...
SVN r3367 (trunk)
2012-02-16 22:58:17 +00:00
Christoph Oelckers
893455ef61
- sync source with latest GZDoom:
...
Includes:
- Made the move tried from checking missile spawns ignore drop off height. This solves the Voodoo Gun ghostly civilian issue.
- Fixed: the NOTELEPORT flag is removed from Dehacked missiles which lose the MISSILE flag. This caused problems with certain special effects based on dehacked spawn cubes.
- Fixed: all Boom silent teleporters preserve relative height.
- support for palette independent particle colors if the renderer can handle them.
SVN r3329 (trunk)
2011-12-06 08:36:28 +00:00
Braden Obrzut
9c8bb236ec
- Backport r1253 through r1256 and r1259 of GZDoom.
...
* By pressing request, allow Linux users to build ZDoom with an FMOD version that doesn't give them 3D sound positioning. :p
* Fixed severe copy-pasta portal copy bug.
* 3D floors hidden by being moved above the ceiling or below the floor will no longer show in the automap.
* Reject TEXTURES scale of 0. They'd do nothing but provoke a division by zero error.
* Maybe fixed Linux compilation?
SVN r3297 (trunk)
2011-09-27 01:14:31 +00:00
Randy Heit
de8bf651f2
- Fix warnings reported by gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4)
...
SVN r3293 (trunk)
2011-09-14 23:24:32 +00:00
Braden Obrzut
bdbea0da32
- Use kernel semaphores on Mac OS X since it doesn't support POSIX semaphores.
...
SVN r3276 (trunk)
2011-08-01 03:53:57 +00:00
Braden Obrzut
dc50487432
- Lets try using semaphores on Linux instead of sleeping to implement cl_capfps.
...
SVN r3270 (trunk)
2011-07-11 02:35:33 +00:00
Braden Obrzut
85bd2e02c9
- Fixed Linux build issues.
...
SVN r3265 (trunk)
2011-07-07 20:49:55 +00:00
Christoph Oelckers
5bfcaab25c
- separation of software renderer from the rest of the code complete. All external access to the renderer is routed through the FRenderer interface class now, with two exceptions (2D texture drawing to a canvas and polymost testing code) that are handled by #defines.
...
SVN r3263 (trunk)
2011-07-07 15:37:47 +00:00
Christoph Oelckers
463c276014
- removed more r_ header dependencies from the rest of the code.
...
SVN r3260 (trunk)
2011-07-06 15:31:05 +00:00
Christoph Oelckers
4626492f50
- separated all colormap related code from v_palette.cpp and r_data.cpp into its own file.
...
SVN r3245 (trunk)
2011-07-03 10:47:35 +00:00
Christoph Oelckers
1993e969b7
- GCC warning fixes (GCC stupidity for the most part.)
...
SVN r3154 (trunk)
2011-02-19 08:59:43 +00:00
Braden Obrzut
99df7354b1
- Fixed: Menu mouse navigation didn't work in fullscreen on Linux.
...
SVN r3151 (trunk)
2011-02-13 06:32:10 +00:00
Braden Obrzut
f942cd0bf3
- Added cursor support for SDL.
...
SVN r3117 (trunk)
2011-01-23 07:37:08 +00:00
Braden Obrzut
7ed7e9f755
- Enable menu mouse navigation on SDL systems.
...
SVN r3112 (trunk)
2011-01-22 03:02:58 +00:00
Christoph Oelckers
82d0a0a98c
- added Chris's second crashcatcher patch.
...
SVN r3089 (trunk)
2011-01-04 09:12:20 +00:00
Christoph Oelckers
2b0262d111
- added Chris's KDE IWAD picker submission.
...
SVN r3083 (trunk)
2011-01-01 09:24:56 +00:00
Christoph Oelckers
e27179afd0
- added Chris's crashcatcher improvements.
...
SVN r3071 (trunk)
2010-12-21 14:15:19 +00:00
Braden Obrzut
c8eb4bbc8d
- Turns out I can't clear one protocol warning on 10.6 without breaking compatibility with 10.4/10.5.
...
SVN r3007 (trunk)
2010-11-11 00:22:36 +00:00
Braden Obrzut
a00730c160
- Fixed: Cocoa IWAD picker was not updated. Also changed instances of the deprecated stringWithCString to stringWithUTF8String.
...
- Fixed: Mac OS X should be case insensitive like Windows.
SVN r3005 (trunk)
2010-11-10 23:39:34 +00:00
Braden Obrzut
9e2e9262a4
- Fixed: Crash in Linux due to passing FStrings as character arrays.
...
- Fixed: More places where SBarInfo used the unscaled information from graphics.
SVN r2948 (trunk)
2010-10-16 17:04:18 +00:00
Christoph Oelckers
eded2ef345
- Each IWAD can now define its own config section. Hacx, Harmony and Action Doom2 now do that.
...
- moved IWAD identification data into a lump in zdoom.pk3.
- rewrote IWAD checking code
SVN r2943 (trunk)
2010-10-15 15:13:53 +00:00
Braden Obrzut
eb064ebe06
- Fixed crash with joysticks with more than 5 axes.
...
SVN r2941 (trunk)
2010-10-13 20:07:16 +00:00
Braden Obrzut
78cfbe56a1
- Forgot to actually add new joystick code.
...
SVN r2940 (trunk)
2010-10-13 16:30:31 +00:00
Braden Obrzut
0d10718e67
- Added SDL joystick support.
...
SVN r2939 (trunk)
2010-10-13 16:29:37 +00:00
Christoph Oelckers
d8fd72e19a
- added Khamsin's fix for visible mouse cursors in Linux fullscreen mode with mouse disabled.
...
SVN r2785 (trunk)
2010-09-15 16:50:08 +00:00
Christoph Oelckers
579502ab74
- merged menu branch back into trunk.
...
SVN r2768 (trunk)
2010-09-14 17:28:18 +00:00
Randy Heit
30ffe1d4b8
- Maybe enable assembly on Intel Macs?
...
SVN r2527 (trunk)
2010-08-13 03:14:05 +00:00
Randy Heit
4f03442a7a
- Make the Cocoa IWAD picker behave like the others: Double-clicking an entry starts
...
it, as does pressing Return, and pressing Escape is equivalent to the Cancel button.
SVN r2526 (trunk)
2010-08-13 00:08:51 +00:00
Christoph Oelckers
096edb0817
- move vid_listadapters CCMD into common code.
...
SVN r2509 (trunk)
2010-08-11 06:31:47 +00:00
Braden Obrzut
921c950bad
- Release Objective-C objects (since I found out the garbage collector is opt-in).
...
SVN r2441 (trunk)
2010-07-18 09:23:33 +00:00
Braden Obrzut
1cf12693ba
- Added Cocoa IWAD picker for Mac OS X.
...
SVN r2440 (trunk)
2010-07-18 08:00:12 +00:00
Braden Obrzut
5a4be4b62b
- Added partial support for a signal based timer under Linux/Mac OS X in order to make cl_capfps effective at limiting CPU usage.
...
SVN r2310 (trunk)
2010-05-06 20:32:03 +00:00
Christoph Oelckers
9aa1e20c77
- Added Blzut3's Solaris patch.
...
SVN r2070 (trunk)
2010-01-01 09:21:04 +00:00
Randy Heit
26f14f439b
- Fixed: The FPS meter cannot use I_MSTime(), because if the game is started
...
with +vid_fps 1, it can need the time before the timer is ready to start.
SVN r2009 (trunk)
2009-11-29 02:57:09 +00:00
Randy Heit
48d78730f3
- Mac version now links. Updaterevision refuses to give me a version number.
...
Zipdir is not doing byte swapping like it should. zdoom.ini is stored
in ~/Preferences, but all other file accesses are probably going to be
like Windows and look in the same directory as the executable.
SVN r1786 (trunk)
2009-09-03 03:51:41 +00:00
Randy Heit
33a397c04b
- Basic Mac support: Everything compiles but does not yet link.
...
SVN r1780 (trunk)
2009-09-01 02:08:53 +00:00
Christoph Oelckers
2c54498d5c
- fixed blue colormap
...
- Added parameters to A_VileAttack.
- Removed redundant definition of use_joystick from SDL/i_input.cpp.
SVN r1727 (trunk)
2009-07-17 08:08:02 +00:00
Randy Heit
f74f6a1659
- Split the joystick menu into two parts: A top level with general options
...
and a list of all attached controllers, and a second level for configuring
an individual controller.
- Fixed: Pressing Up at the top of a menu with more lines than fit on screen
would find an incorrect bottom position if the menu had a custom top height.
- Added the cvars joy_dinput, joy_ps2raw, and joy_xinput to enable/disable
specific game controller input systems independant of each other.
- Device change broadcasts are now sent to the Doom event queue, so
device scanning can be handled in one common place.
- Added a fast version of IsXInputDevice that uses the Raw Input device
list, because querying WMI for this information is painfully slow.
- Added support for compiling with FMOD Ex 4.26+ and running the game
with an older DLL. This combination will now produce sound.
SVN r1717 (trunk)
2009-07-15 05:53:06 +00:00
Randy Heit
417779440d
- Added joystick config loading and saving support; moved generic joystick
...
interfaces to m_joy.h.
- Added Raw Input PS2 adapter support.
SVN r1713 (trunk)
2009-07-11 01:40:01 +00:00