Marc Cannon [Wed, 2 Jan 2013 15:24:27 +0000 (15:24 +0000)]
Update loading.xpm to lightning's splash image
Marc Cannon [Wed, 2 Jan 2013 15:22:37 +0000 (15:22 +0000)]
Clean up for Gtk widget: remove window decorations, add a progress bar (currently only does percentages -- may add pulsing in the future if it seems necessary)
Marc Cannon [Wed, 2 Jan 2013 15:21:35 +0000 (15:21 +0000)]
Add LoadingWindow::SetProgress(current, target)
Marc Cannon [Wed, 2 Jan 2013 06:06:15 +0000 (06:06 +0000)]
Also remove 'CustomsLoadMax' pref; it's unhelpful and the load timeout is what matters, not how many songs load before the timeout is hit.
Marc Cannon [Wed, 2 Jan 2013 05:57:01 +0000 (05:57 +0000)]
Remove prefs for 'AllowExtraPlayerOptions', 'CustomMaxSizeMB', and 'CustomMaxStepSizeKB'; the former has no useful purpose, the latter two provide unnecessary config for edge cases. We can determine more reasonable 'hard' limits and cut some cruft in the meantime
Marc Cannon [Wed, 2 Jan 2013 05:38:30 +0000 (05:38 +0000)]
Added Lua sandboxing for profile-loaded Lua data. If the profile data can't be loaded within the sandbox (no external symbol or function calls), then it's blanked on next save.
Marc Cannon [Wed, 2 Jan 2013 03:58:21 +0000 (03:58 +0000)]
Moved Lua versioning globals logic (DiagnosticUtils.cpp -> ProductInfo.cpp), string::npos -> CString::npos, SetProgramGlobals -> SetVersionGlobals
Marc Cannon [Wed, 2 Jan 2013 03:45:06 +0000 (03:45 +0000)]
Unbreak the OPENITG_VERSION token, which someone broke by setting it to a string instead of an integer. Added comments to clarify purpose. Added code to generate an integer token that defines a build, using its versioning data, and several constants extended to Lua space.
Marc Cannon [Wed, 2 Jan 2013 03:35:53 +0000 (03:35 +0000)]
Overhaul of ProductInfo: change to const refs, removed unused bug tracker, fixed casing to match rest of the engine.
Marc Cannon [Wed, 2 Jan 2013 03:32:00 +0000 (03:32 +0000)]
removed what I'm guessing is a debug printf (please use LOG->Debug and please try not to commit those calls...)
Marc Cannon [Wed, 2 Jan 2013 02:51:54 +0000 (02:51 +0000)]
Make configure versioning more name-agnostic, grab our version from the src tag and have a separate value for the revision, append 'DEV' to the version name if we're not on the tagged release
Marc Cannon [Wed, 2 Jan 2013 02:49:32 +0000 (02:49 +0000)]
Tell SMO we're SM 3.95; we haven't changed any code, so this seems less dangerous than tying it to a version number until/unless we actually modify things.
Marc Cannon [Sat, 29 Dec 2012 00:04:28 +0000 (00:04 +0000)]
Remove all 'dynamic' driver work to date. This may be replaced with a LuaDriver backport in the foreseeable future.
Marc Cannon [Fri, 28 Dec 2012 23:57:11 +0000 (23:57 +0000)]
Don't consider explicitly read-only paths for file writing
Marc Cannon [Fri, 28 Dec 2012 23:56:41 +0000 (23:56 +0000)]
Never refuse to run due to a missing LoadingWindow; just log an error and fall back to null
Marc Cannon [Fri, 28 Dec 2012 23:35:14 +0000 (23:35 +0000)]
Don't use SSE2 optimisations by default; see note in configure.ac.
Marc Cannon [Fri, 28 Dec 2012 22:53:37 +0000 (22:53 +0000)]
Tentative fix for 'couldn't open directory ' issue
Carl Myers [Mon, 28 Mar 2011 20:56:40 +0000 (13:56 -0700)]
Updated ReleaseNotes.txt
infamouspat [Mon, 28 Mar 2011 03:08:41 +0000 (20:08 -0700)]
add patch data the proper way in win32 installers, keep product name as just "OpenITG" in installer
infamouspat [Sat, 5 Mar 2011 08:08:22 +0000 (00:08 -0800)]
Add DLL files to source control, change win32-related code to use ProductInfo static class
infamouspat [Sat, 5 Mar 2011 10:19:18 +0000 (02:19 -0800)]
add global.h to ProductInfo.cpp for win32 precompiled headers (sigh), add stupid frontend hack to show title screen background video in home theme
Carl Myers [Sun, 27 Mar 2011 20:58:14 +0000 (13:58 -0700)]
Fixed patch script to warn if itg2ac-util missing
* Fixed patch script to warn if itg2ac-util missing
* Also added comments about the "ITG 2 *" prefix for patches
* Removed code that searches for "OpenITG" prefix for patches
CR: infamouspat
Mark Cannon [Sat, 26 Mar 2011 20:13:42 +0000 (16:13 -0400)]
minor fixups in start-3.sh, updated patch.xml a bit
Mark Cannon [Sat, 26 Mar 2011 20:10:26 +0000 (16:10 -0400)]
add gen-arcade-patch.sh (tested and working so far), fixes for gen-patch-zip.sh, removed old generate-patch.sh
Mark Cannon [Sat, 26 Mar 2011 16:55:23 +0000 (12:55 -0400)]
fixed potential bug - on PC, a dongle decryption error could cause a segfault
Mark Cannon [Fri, 25 Mar 2011 23:09:41 +0000 (19:09 -0400)]
finally added xterm message on iButton::GetAESKey() failure; tested and working
Mark Cannon [Fri, 25 Mar 2011 22:34:04 +0000 (18:34 -0400)]
iButton::GetAESKey() now returns bool instead of int; functionally the same, but less unintuitive conditionals
Mark Cannon [Fri, 25 Mar 2011 09:22:01 +0000 (05:22 -0400)]
added gen-patch-zip.sh (which generates an encrypted patch.zip for use with arcade patches and home releases)
Mark Cannon [Fri, 25 Mar 2011 08:12:49 +0000 (04:12 -0400)]
fix potential bug with Iow's last input state not being initialized
Mark Cannon [Fri, 25 Mar 2011 08:04:53 +0000 (04:04 -0400)]
optimized Iow and PIUIO processing: use one RageTimer for all input reports in a single update (which shouldn't lose any precision anyway), only report button changes on HandleInput instead of reporting everything, use LightsMapping's GetLightsField() to update lights instead of doing it by hand (so to speak)
Mark Cannon [Fri, 25 Mar 2011 08:02:36 +0000 (04:02 -0400)]
move RageUtil functions IsBitSet/SetBit to use 0-31 instead of 1-32 (i.e. zero indexing - 0 = MSB, 31 = LSB)
Mark Cannon [Fri, 25 Mar 2011 08:01:11 +0000 (04:01 -0400)]
added GetLightsField() to LightsMapper - now it'll generate a bit field from its mappings given a LightsState
Mark Cannon [Mon, 21 Mar 2011 20:36:37 +0000 (16:36 -0400)]
add 'critical sound' flag to RageSoundParams; should make the sound play at normal volume regardless of the current mixer settings. untested (this computer has no sound card)
Mark Cannon [Sun, 20 Mar 2011 17:59:16 +0000 (13:59 -0400)]
Merge branch 'master' of git@github.com:openitg/openitg
Pat McIlroy [Sun, 20 Mar 2011 09:35:50 +0000 (02:35 -0700)]
dumb hack for ResolvePath() to only used directory-based file drivers
Mark Cannon [Sun, 20 Mar 2011 08:19:18 +0000 (04:19 -0400)]
fix crash in the crash handler caused by unconditional CString assignment of Dl_info::dli_saddr, which might be NULL
Mark Cannon [Sun, 20 Mar 2011 08:19:18 +0000 (04:19 -0400)]
fix crash in the crash handler caused by unconditional CString assignment of Dl_info::dli_saddr, which might be NULL
Carl Myers [Sun, 20 Mar 2011 08:11:09 +0000 (01:11 -0700)]
Merge branch 'master' into stable
Mark Cannon [Sun, 20 Mar 2011 05:53:07 +0000 (01:53 -0400)]
add libusb init calls that it was fine with until a few revisions ago (?_?)
Mark Cannon [Sat, 19 Mar 2011 23:07:45 +0000 (19:07 -0400)]
add USBDriver_Impl::DeviceExists so we can see if a device exists before trying to instantiate it
Mark Cannon [Sat, 19 Mar 2011 22:53:53 +0000 (18:53 -0400)]
fix stupid mistake with ITGIO VID/PID matching
Mark Cannon [Thu, 17 Mar 2011 20:33:15 +0000 (16:33 -0400)]
add usb_get_driver_np() support in libusb driver, de-magic some numbers
Mark Cannon [Mon, 14 Mar 2011 21:58:01 +0000 (17:58 -0400)]
more platform-agnostic USBDriver_Impl handling (in the future, we'll rely on libusb as a fallback for non-*nix systems)
Mark Cannon [Mon, 14 Mar 2011 18:29:59 +0000 (14:29 -0400)]
add minor debug to PIUIO, clarify an old comment
Mark Cannon [Mon, 14 Mar 2011 18:28:42 +0000 (14:28 -0400)]
add Makefile for USBDriver_Impl logic
Mark Cannon [Mon, 14 Mar 2011 18:28:16 +0000 (14:28 -0400)]
fix stupid mistake, USBDriver_Impl code should work now
Mark Cannon [Mon, 14 Mar 2011 04:31:55 +0000 (00:31 -0400)]
fix silly linker error with the PIUIO driver
Mark Cannon [Mon, 14 Mar 2011 04:30:40 +0000 (00:30 -0400)]
actually handle input in IOW before writing the lights state
Mark Cannon [Sun, 13 Mar 2011 09:51:12 +0000 (05:51 -0400)]
fix linker errors re virtual tables for USBDriver_Impl and derivatives
Mark Cannon [Sun, 13 Mar 2011 09:25:33 +0000 (05:25 -0400)]
overhaul of USB I/O to work with arch-based USBDriver, removed reconnection logic from ITGIO and PIUIO (handled by the driver now)
Carl Myers [Sun, 20 Mar 2011 04:17:21 +0000 (21:17 -0700)]
Fixed version logic so version number is embedded in binary
Carl Myers [Sat, 19 Mar 2011 23:23:01 +0000 (16:23 -0700)]
Must wrap std::string with CString for g++ v3.3
Pat says "Fuck you, g++ 3.3"
Pat McIlroy [Sat, 19 Mar 2011 22:12:14 +0000 (15:12 -0700)]
make RageFileManager::ResolvePath() more (in)sane
Mark Cannon [Sat, 19 Mar 2011 20:56:39 +0000 (16:56 -0400)]
more cleanup; moved arcade patch data to arcade-patch and patch-dec/* down to patch-data
Mark Cannon [Sat, 19 Mar 2011 20:22:57 +0000 (16:22 -0400)]
cleanup in assets; removed most of the superfluous/unnecessary game data
Mark Cannon [Thu, 17 Mar 2011 22:18:38 +0000 (18:18 -0400)]
minor optimizations to Song (use CString& where we don't need a copy, copy explicitly only if we do)
Mark Cannon [Thu, 17 Mar 2011 19:36:54 +0000 (15:36 -0400)]
recommit changelog that was clobbered in the move
Mark Cannon [Thu, 17 Mar 2011 19:09:46 +0000 (15:09 -0400)]
add default pump mappings for PIUIO (untested, but they're definitely the right input bits)
Mark Cannon [Thu, 17 Mar 2011 19:31:45 +0000 (15:31 -0400)]
fix potential crash in PIUIO/ITGIO due to uninitialized guard variable
Mark Cannon [Thu, 17 Mar 2011 19:09:13 +0000 (15:09 -0400)]
remove some dead code from ScreenGameplay, change the default 'Select' keyboard mapping to slash (like SM5/sm-ssc use)
Mark Cannon [Wed, 16 Mar 2011 02:41:20 +0000 (22:41 -0400)]
fixed compile error in Player.cpp (sorry about that)
Mark Cannon [Tue, 15 Mar 2011 21:06:15 +0000 (17:06 -0400)]
re-fix bug where the timing modifier was listed even with no change; renamed to 'Timing' internally
Mark Cannon [Tue, 15 Mar 2011 21:05:41 +0000 (17:05 -0400)]
rename fJudgeScale to fTimingScale to match PlayerOptions, don't scale holds at all
Toni Spets [Mon, 14 Mar 2011 18:46:49 +0000 (20:46 +0200)]
Remove libcrypto++ from the configure summary for now
Toni Spets [Sun, 13 Mar 2011 11:20:22 +0000 (13:20 +0200)]
Add inotify to configure summary
Toni Spets [Sun, 13 Mar 2011 11:13:32 +0000 (13:13 +0200)]
Move versioning to configure, test for SSE2 and show a summary
* version.h is no longer, configure will take care of setting the version in config.h
* SSE2 is tested in configure, --with-sse2 and --without-sse2 overrides auto detection
* show a summary of detected and used libraries in the end of configure
Toni Spets [Mon, 7 Mar 2011 14:58:29 +0000 (16:58 +0200)]
Fix controller configuration menu overflow
Toni Spets [Sun, 6 Mar 2011 20:03:55 +0000 (22:03 +0200)]
Linux hotplug support with inotify
Toni Spets [Mon, 14 Mar 2011 17:25:15 +0000 (19:25 +0200)]
Revert "Link against system Crypto++ if available"
This reverts commit
df0fd44dd9cc4f5719e917d141856b4d076112c0.
There is more to it than what I did, arcade signing broke down.
Toni Spets [Mon, 7 Mar 2011 15:26:51 +0000 (17:26 +0200)]
Add automapping for Positive Gaming Impact Dance Pad
Toni Spets [Sat, 5 Mar 2011 06:20:48 +0000 (08:20 +0200)]
Add ALSA to dependencies.txt
Toni Spets [Wed, 2 Mar 2011 18:33:11 +0000 (20:33 +0200)]
Update dependencies.txt
Toni Spets [Wed, 2 Mar 2011 16:14:55 +0000 (18:14 +0200)]
Drop ffmpeg requirements to 0.5.2 (Debian squeeze)
Toni Spets [Tue, 1 Mar 2011 21:25:07 +0000 (23:25 +0200)]
Link against system Crypto++ if available
Toni Spets [Tue, 1 Mar 2011 18:34:02 +0000 (20:34 +0200)]
Fix Linux dual head breakage on exit
Toni Spets [Tue, 1 Mar 2011 18:12:47 +0000 (20:12 +0200)]
Allow linking against system libresample
Toni Spets [Tue, 1 Mar 2011 17:26:23 +0000 (19:26 +0200)]
Fix ffmpeg compatibility, allow building against system libs
Carl Myers [Tue, 1 Mar 2011 07:58:58 +0000 (23:58 -0800)]
Some build-related fixes, dep update
* Noted that autoconf tools are needed, v1.9 or older
* Fixed build scripts to take a number to call `make -jX`
Toni Spets [Mon, 28 Feb 2011 19:02:42 +0000 (21:02 +0200)]
Use size_t instead of unsigned int for 64 bit compatibility
Toni Spets [Mon, 28 Feb 2011 19:01:47 +0000 (21:01 +0200)]
Link with X11 and Xext when building against Xorg
Toni Spets [Mon, 28 Feb 2011 16:27:11 +0000 (18:27 +0200)]
Use intptr_t instead of int for pointer storage
Toni Spets [Mon, 28 Feb 2011 16:14:11 +0000 (18:14 +0200)]
Fix invalid use of CString with fprintf
Toni Spets [Thu, 24 Feb 2011 14:57:57 +0000 (16:57 +0200)]
Fix build on gcc 4.5
Toni Spets [Wed, 23 Feb 2011 17:56:37 +0000 (19:56 +0200)]
Add sys/stat.h includes where missing
Carl Myers [Mon, 28 Feb 2011 09:39:34 +0000 (01:39 -0800)]
Fixed minor bug in generate-patch.sh
Carl Myers [Mon, 28 Feb 2011 09:14:20 +0000 (01:14 -0800)]
Added features to the ReleaseNotes.txt for Beta 4!
Carl Myers [Mon, 28 Feb 2011 06:47:54 +0000 (22:47 -0800)]
Added startchroot.sh script
Carl Myers [Mon, 28 Feb 2011 06:46:29 +0000 (22:46 -0800)]
Documentation updates
* Moved FAQ to wiki 'cause it's hella old, maybe now someone will update it.
* Updated ReleaseNotes for beta3
* Updated WhoToSue with new contact info. Your welcome, lawyers!
Pat McIlroy [Mon, 28 Feb 2011 09:12:34 +0000 (01:12 -0800)]
generate-patch: naming scheme, patch.xml manipulation
Pat McIlroy [Mon, 28 Feb 2011 08:25:06 +0000 (00:25 -0800)]
fix bug in patch generation script involving binary not being included in machine revision zip
Carl Myers [Mon, 28 Feb 2011 08:51:23 +0000 (00:51 -0800)]
Adding myself to the credits =D
CR: infamouspat
Carl Myers [Mon, 28 Feb 2011 08:44:45 +0000 (00:44 -0800)]
Updated dependencies.txt
Pat McIlroy [Mon, 28 Feb 2011 06:38:30 +0000 (22:38 -0800)]
fixed crash causd by passing CString objects to log
Pat McIlroy [Mon, 28 Feb 2011 06:37:39 +0000 (22:37 -0800)]
smarter home release generation script, fix syntax issue in version generation script
Pat McIlroy [Mon, 28 Feb 2011 06:36:21 +0000 (22:36 -0800)]
fix default theme selection in home release
Pat McIlroy [Sun, 27 Feb 2011 22:06:31 +0000 (14:06 -0800)]
Add FAQ.txt, ReleaseNotes.txt, and WhoToSue.txt to home releases generation script
Pat McIlroy [Sun, 27 Feb 2011 21:06:35 +0000 (13:06 -0800)]
removed redundant Patch-OpenITG.rsa file in patch-data, finish arcade machine revision generator
Pat McIlroy [Sun, 27 Feb 2011 09:36:06 +0000 (01:36 -0800)]
home release generation script
Pat McIlroy [Sun, 27 Feb 2011 07:33:07 +0000 (23:33 -0800)]
WIP: home and arcade release generation scripts
Pat McIlroy [Sun, 27 Feb 2011 07:38:06 +0000 (23:38 -0800)]
lol d4