Commit Graph

27564 Commits

Author SHA1 Message Date
AJ Kelly bb0ee42472 fix small typo 2009-03-03 21:37:55 +00:00
AJ Kelly e2e8c4c171 add various commands 2009-03-03 21:32:21 +00:00
AJ Kelly 6bacf561ca add ScreenOptionsExportPackage 2009-03-03 21:29:06 +00:00
Chris Danford 8c52d43306 nondeterministic global ctor ordering might init this before SpecialFiles::NOTESKINS_DIR 2009-03-03 09:02:01 +00:00
Steve Checkoway b51ba2c6de Reorganize so that SMApplication's implementation is by its interface. 2009-03-02 09:37:53 +00:00
Steve Checkoway 6909760283 silence warning 2009-03-02 09:27:15 +00:00
Chris Danford 4cadae8e56 export file using zip file writer stubs 2009-03-02 06:36:15 +00:00
Chris Danford 85daa681f9 basic export packages UI (doesn't export the smzip yet) 2009-03-02 02:08:59 +00:00
Mike Hawkins ba752c4a23 Fixing typo in error message 2009-02-26 23:21:02 +00:00
Chris Danford 85e9303738 Install packages using StepMania.exe, not tool.exe. Package installation now just copies the .smzip to the user Packages dir. 2009-02-17 18:39:52 +00:00
Chris Danford 811d6c0673 Install packages using StepMania.exe, not tool.exe. Package installation now just copies the .smzip to the user Packages dir. 2009-02-17 18:36:16 +00:00
Chris Danford d53eb89dbd Windows: save files in AppData dir (not MyDocuments), save Screenshots in user's Pictures dir 2009-02-17 18:34:15 +00:00
Chris Danford 7114679d91 all ScreenSelect derivatives already have a hard-coded subscribe to PlayerJoined 2009-02-10 22:44:28 +00:00
Colby Klein 370e441783 Fix name entry crash 2009-02-05 03:42:16 +00:00
Colby Klein e0107716e0 Increase saturation a bit. 2009-01-16 21:23:21 +00:00
Mike Hawkins 1a5f4ca673 Correction for last update using wrong Profile.cpp file (see http://www.stepmania.com/forums/showthread.php?p=139259&posted=1#post139259) 2009-01-08 05:47:10 +00:00
Mike Hawkins 35051e4479 Increase max size of stats.xml, considering the fact that many people have a large number of songs (many more than 100) and many songs now have single+double charts included (more than 3). 2009-01-08 03:07:48 +00:00
Steve Checkoway 17cc65e8fd _DEBUG -> DEBUG 2009-01-06 17:54:21 +00:00
Rob Campbell d498ec08f1 Proper (?) windows compile fix 2009-01-05 22:02:30 +00:00
Steve Checkoway 3f800ece3d Actually look in the right place for subscriptions. 2009-01-05 08:46:22 +00:00
Colby Klein 73f3c134f8 This was reverted by one of the last few commits, it should be there. 2009-01-05 08:07:33 +00:00
Rob Campbell 1c87ce4db1 transition work part II, and some other small touchups 2009-01-05 07:06:40 +00:00
Steve Checkoway f6edbc8a28 Only subscribe to PlayerJoined a single time. 2009-01-05 07:00:49 +00:00
Steve Checkoway a15f9e4968 Add IsSubscribedToMessage() 2009-01-05 07:00:29 +00:00
Steve Checkoway dbca9eedf6 Revert. IF is a macro, if is a conditional statement. Furthermore, casting to an unsigned 32 bit integer on a 64 bit machine causes the the x<0 to always be false. But since there is a comma, the "bad integer" was evaluating to a nonzero address and so the conditional was always true and the empty statement would be executed. That is wrong. 2009-01-05 06:17:44 +00:00
Rob Campbell 503999eedc Add some screen transitions 2009-01-05 05:54:37 +00:00
Colby Klein 786c340c47 Remove metrics for deleted screens (ScreenSelectStyle, ScreenSelectDifficulty, ScreenSelectGroup). 2009-01-04 22:59:55 +00:00
Colby Klein e3c623bc39 Update ScreenSelectPlayer when a player joins. This prevents it from crashing if the cursor has not been moved. 2009-01-04 21:57:56 +00:00
Rob Campbell be4eef5e05 Fix a compile error 2009-01-04 20:33:15 +00:00
Colby Klein b4c7ab6eb9 Add metric to show/hide skip display in stats. 2009-01-03 13:10:34 +00:00
Colby Klein 3764146303 Only display the video renderer in stats on Windows. Mac OS and Linux only have OpenGL available so this doesn't matter. 2009-01-02 21:44:45 +00:00
Colby Klein 42fd54048e Fix compile. 2009-01-02 01:43:48 +00:00
Colby Klein 708093a745 Cleanup 2009-01-01 23:48:05 +00:00
Colby Klein b44c4dd92d Fix percent 2009-01-01 07:22:16 +00:00
Colby Klein 90c26e3164 Allow selecting up to 400% rate (this is particularly useful for transitions). 2008-12-31 07:38:28 +00:00
Colby Klein c1bec5d876 Add semicolons (for consistency) 2008-12-31 01:08:04 +00:00
Steve Checkoway d4209f54ce We have inttypes.h and we want the standard format macros. 2008-12-27 01:17:49 +00:00
Steve Checkoway 382dad70a1 On a 64 bit machines, uint32_t is promoted to unsigned int when compared with 0 and cannot ever be negative. cast it to int32_t first to force sign extension when comparing with 0. 2008-12-26 23:28:04 +00:00
Steve Checkoway 19e1c8bb4e Fix format strings. 2008-12-26 23:23:18 +00:00
Steve Checkoway 2258f21c2d Include inttypes.h, if we have it, and use the standard format macro PRIi64 if it is defined. 2008-12-26 23:21:20 +00:00
Steve Checkoway fc59d1f853 Constant format string. 2008-12-26 13:24:00 +00:00
Steve Checkoway b19f2fba56 Comparison is always false on x86_64. 2008-12-26 13:00:35 +00:00
Steve Checkoway 0132ef996b Fix possible crash with non constant format string. 2008-12-26 12:59:04 +00:00
Steve Checkoway fa7d3e5141 The first of these was correct, the second was actually incorrect, so fix and simplify. 2008-12-26 12:57:13 +00:00
Steve Checkoway 595a0f85d8 Gcc assumes that I do not know order of operation of && and ||, so add parentheses to silence warnings. 2008-12-26 12:37:29 +00:00
Steve Checkoway 45c642ec28 Fix issues on x86_64 where unsigned is not large enough to hold RString::npos and so the comparison is always false. Gcc would have been free to optimize that away. Not sure if it did or not. 2008-12-26 12:34:46 +00:00
Steve Checkoway a6b0a78d98 Use constant format string. 2008-12-26 12:33:29 +00:00
Steve Checkoway ef7749175e Initialize in the correct order. 2008-12-26 12:32:48 +00:00
Steve Checkoway 05a5a33cda Initialize in the correct order. 2008-12-26 12:32:14 +00:00
Steve Checkoway 436f6f48ec Initialize in the correct order. 2008-12-26 12:31:57 +00:00