Commit Graph

4058 Commits

Author SHA1 Message Date
Glenn Maynard f9ff8d49fb Z-buffer for effects on the Z axis. 2003-07-09 01:34:48 +00:00
Glenn Maynard 1921765e9e Allow for effects on the Z axis. 2003-07-09 00:49:05 +00:00
Glenn Maynard 5a14717245 Fix inconsistent naming scheme. 2003-07-08 23:59:08 +00:00
Glenn Maynard a61a803ced Please use real names in copyright notices, not aliases.
Minor cleanup: Indent of 4.  Use ssprintf, not sprintf.  Fix warnings.  Use
SET_XY.
2003-07-08 23:48:51 +00:00
Sean Burke e3eb9b4e50 Make LoadingWindow_Gtk work better in general. 2003-07-08 23:41:07 +00:00
Glenn Maynard 6ad613a074 Fix newlines. CVS gets annoyed at changing binary files to ASCII;
un-annoy it.
2003-07-08 23:38:26 +00:00
Glenn Maynard a19e0548a2 Fix double-spacing. I think this happened when the -kb flag was removed. 2003-07-08 23:34:15 +00:00
Glenn Maynard b3f91f52e9 support up to 32 buttons 2003-07-08 21:13:43 +00:00
Chris Danford 19d8a3de4c fix crash on step if NULL life meter 2003-07-08 20:56:25 +00:00
Chris Danford 332c2b318c break battle into two PlayModes: CPU_BATTLE, HUMAN_BATTLE 2003-07-08 19:56:56 +00:00
Sean Burke 0bb99f60a7 eol 2003-07-08 19:16:39 +00:00
Sean Burke ac64793f10 Case change for compatibility. 2003-07-08 19:14:54 +00:00
Andrew Wong a471a70e1e updated unlock screen - now it can be configured to be MAX2-style (shows the numbers 1-30) 2003-07-08 18:50:24 +00:00
Andrew Wong 7c07ca4d72 metrics update for unlocking screen 2003-07-08 18:49:16 +00:00
Andrew Wong 41301f2e1e Added metrics for unlock screen 2003-07-08 12:52:27 +00:00
Andrew Wong d248bd17e3 Fixed a bug with "points till next unlock"
Implemented metrics for unlock screen (sets position and size of dance points till next unlock)
2003-07-08 12:50:31 +00:00
Andrew Wong 6fdfd55dba fixed freeze arrows for previous commit (after failing a song perfects/marv is worth 10 points, great 5) 2003-07-08 10:26:27 +00:00
Thad Ward 856b8e48b1 null. making sure CIA notifications are working properly. 2003-07-08 08:56:50 +00:00
Andrew Wong b76fd0dafd implemented feature where failing a song causes you to receive 10 points for a perfect/marvelous, 5 per great.
NOTE: it still has a few bugs, some I have noticed:

1) getting a freeze arrow still nets in full (marvelous) points
2) score doesn't seem to update sometimes the points completely.

Also may have implemented Toasty unlocks.  (i added a line but it may or may not work)
2003-07-08 08:21:10 +00:00
Glenn Maynard c054999c63 testing 2003-07-08 04:40:26 +00:00
Glenn Maynard eaeb1284d3 testing 2003-07-08 04:37:55 +00:00
Glenn Maynard 1583d3be81 fix, simplify 2003-07-08 04:35:25 +00:00
Glenn Maynard b3776b9c8a readding 2003-07-08 04:19:35 +00:00
Glenn Maynard 5e824ad951 readding 2003-07-08 04:18:57 +00:00
Glenn Maynard 7280a45acd test 2003-07-08 03:53:45 +00:00
Steve Checkoway a6e11aa231 Updated files.
Updated file locations from absolute path to project relative path.
Removed my user info from stepmania.pbproj. (With any luck I'll remember to do that every time I commit this.)
2003-07-08 03:49:33 +00:00
Glenn Maynard 7a3cc013f3 dummy 2003-07-08 03:25:15 +00:00
Glenn Maynard 08a911080f dummy 2003-07-08 03:21:26 +00:00
Glenn Maynard a89cfd00cf dummy commit 2003-07-08 03:20:48 +00:00
Glenn Maynard e386f47fbd test 2003-07-08 03:19:30 +00:00
Steve Checkoway 981988a74f We should be able to compile with the C flag -DNDEBUG to remove all assertions.
This fixes the problem that I had before with SM crashing in GetFontName.
2003-07-07 23:14:50 +00:00
Glenn Maynard 7dc6d805db add error conditions 2003-07-07 22:56:02 +00:00
Glenn Maynard 94fe0ff259 remove duplicates 2003-07-07 22:22:04 +00:00
Glenn Maynard 03b4a7b6f3 Re-adding these; they were (incorrectly) added as binary files for some
reason.

Fix include case, reduce dependencies on UnlockSystem.h, cleanup.
2003-07-07 22:21:31 +00:00
Glenn Maynard 0011ca5654 Re-adding these; they were (incorrectly) added as binary files for some
reason.
2003-07-07 22:19:03 +00:00
Ben Anderson 897caf4cee Case counts on Linux 2003-07-07 22:12:12 +00:00
Glenn Maynard 27d47bb813 fix INPUTMODE_BOTH on 2p side 2003-07-07 20:54:59 +00:00
Chris Danford 6c99547b6a add ClearZBuffer command for Actors
add Lighting flag for BGAnimationLayer
2003-07-07 20:24:51 +00:00
James Sanders 65d390ebc3 just updating my todo 2003-07-07 19:24:25 +00:00
Glenn Maynard 6f82760d6d extra stage fixes 2003-07-07 19:19:16 +00:00
Thad Ward 5309e264e8 nul. bump the ciabot script 2003-07-07 18:22:36 +00:00
Andrew Wong 0f996ab2b1 updated some incorrect names in the preferences file
adjusted rate timer increased while playing oni courses to reflect song play modifiers
2003-07-07 11:02:23 +00:00
Glenn Maynard f32fdae326 simplify
Quick 6am (zzzz) tips:

If a block is more than a few lines long, always bracket {} it, even if you
don't have to.  Large unbracketed expressions get hard to follow.

Don't do this:
while(stuff) {
   if(x) {
      do lots of stuff;
   }
}

Instead, do this:

while(stuff) {
   if(!x)
      continue;
   do lots of stuff;
}

This simplifies program flow; the former makes me scroll down the page
to see if there's anything after the "if" before it comes around the loop
again.  It also reduces indentation.

XXX's are things that I'm not going to try to do at 6am ...
2003-07-07 10:51:58 +00:00
Glenn Maynard 2daa449d49 fix warnings 2003-07-07 10:41:33 +00:00
Andrew Wong d27a25e472 Revamped the unlock system. Currently it supports the following methods:
DP - dance points, what Miryokuteki had in place
AP - arcade points, like MAX2 arcade
SP - song points, like MAX2 home (though I don't know the exact system)
CS - clear stages, like 5th home

Somewhat strewn but not supported yet:
!! - Toastys seen
EC - cleared extra stages
EF - fail extra stage (don't quote me on these two yet, I haven't tried them yet)
RO - roulette (theres fifteen roulette slots, but its not implemented yet)

Also updated the INI to store values for these means of unlocking.  The system
still isn't "optimized" yet, though.
2003-07-07 10:22:53 +00:00
Chris Danford 7622dc7282 delete all thumbs.db script 2003-07-07 09:09:20 +00:00
Kevin Slaughter b643749625 Clear out my old TODO 2003-07-07 09:08:12 +00:00
Glenn Maynard 0ea5fe7d63 bump cache 2003-07-07 05:39:45 +00:00
Glenn Maynard ff2c4e2ff4 Sanae Shintani special case 2003-07-07 05:32:25 +00:00
Glenn Maynard d90cca1ad9 fix ScreenSelectCourse score frame 2003-07-07 05:16:27 +00:00