Commit Graph
27568 Commits
Author SHA1 Message Date
Jason Felds 622cd05115 Consistent ordering with NoteDisplay.cpp. Easier to change one instance than x - 1. Fixes hold heads being flat. 2009-03-15 04:49:38 +00:00
Jason Felds f99d643f07 New arrow type: the Fake arrow. Doesn't score for or against you. Perfect for simfiles that want to use mission mode type files or use measure skipping and not have it count against you. See ZXZ Bloody Heart in StepMix 4 for a file that could use this arrow type. 2009-03-10 15:52:22 +00:00
Jason Felds 757a9639c9 Seems everyone loves keeping tabs lined up. Here's my contribution. 2009-03-10 00:09:54 +00:00
Steve Checkoway 6671cfa516 Add files. 2009-03-03 21:43:56 +00:00
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