Chris Danford
a8792e08db
don't make unlocks for songs with no challenge steps
2006-05-25 18:46:40 +00:00
Chris Danford
69887462fb
don't let tab affect mod approach speed
2006-05-22 20:06:33 +00:00
Steve Checkoway
34a63dd8db
Fix crash on extra stage.
2006-05-20 09:00:35 +00:00
Steve Checkoway
9da602cec4
Use the theme metric rather than "default".
2006-05-20 09:00:09 +00:00
Steve Checkoway
df6d8cb6ba
Make the default NoteSkin a theme metric. That means we can't call GetNoteSkinNames() before the theme is loaded so split out the code to get the names of the the skins for a particular game.
2006-05-20 08:58:53 +00:00
Steve Checkoway
8de96799ad
Add better logging. It'd be nice if these values were checked as they were read in from Preferences.ini.
2006-05-20 06:16:09 +00:00
Steve Checkoway
268624f8ec
Minor spacing cleanup.
2006-05-20 05:40:09 +00:00
Steve Checkoway
cd5a0546b0
Fix compile on newer gcc.
2006-05-20 05:38:23 +00:00
Steve Checkoway
bc6cf3b9a3
missed commit
2006-05-20 05:37:03 +00:00
Steve Checkoway
76e98bdaf5
More logging, but less noisy logging (log instead of info).
2006-05-19 20:26:25 +00:00
Steve Checkoway
59c663b238
Attempt to handle devices other than the built-in audio correctly. Not tested on anything but the built-in audio.
2006-05-19 08:09:38 +00:00
Chris Danford
6663db2f94
fix blank graphic not being loaded by BackgroundEffects
2006-05-17 18:07:15 +00:00
Chris Danford
140f589224
mappings for Trio Linker
2006-05-17 17:41:00 +00:00
Steve Checkoway
2754fd0f18
Perform the same loop unrolling for Read. This eliminate all stalls in the loop for all processors with altivec (well, at least both G4s (IBM 7400 and 7450) and the G5 (IBM 970) processors. I didn't bother for the other read function since it isn't actually used and is included more for completeness than anything else (plus, these were a lot of fun to write).
2006-05-17 09:59:34 +00:00
Steve Checkoway
177e65a34c
Do gcc's job for it and do sane loop unrolling. The (now second) while loop was stalling the pipeline almost as often as it was doing useful work. When gcc tried to do loop unrolling (i.e. when I changed the condition to size >= 8), it produced 4 _identical_ copies of the loop, each of which had the same number of stalls (this is all with the G5, the G4 had one stall in the loop). By unrolling and doing the most basic of instruction scheduling, this produces the same amount of code as gcc does but with 1 stall in the big loop (0 for the G4) but the same number in the second loop which is executed at most 3 times.
...
To keep gcc from unrolling the second loop, I'm using the bit masking condition which confuses the optimizer.
Note that this behavior won't change unless we stop targeting any OS below 10.3.9 and move to a more recent version of gcc (whose behavior I haven't bothered to test).
2006-05-17 09:27:54 +00:00
Steve Checkoway
8d83e1e3f8
Bah, revert. It still doesn't shut up the profiler. If it's not doing any work, it'll be quite quick.
2006-05-17 09:26:04 +00:00
Steve Checkoway
032c1269bc
Pull size check out of the function. Profiling showed that a large number of samples (as in profiling samples, not sound samples) of Vector::FastSoundWrite() where in its prologue which was attributed to the early exit condition (basically just shuts the profiler up).
2006-05-17 09:13:08 +00:00
Steve Checkoway
060b68ff00
Add more logging: Check that the sample rate we just set matches what the device declares as it's sample rate; log if the device's sample rate changes while it's running.
2006-05-17 07:40:54 +00:00
Charles Lohr
a84d30b92e
Fix crash from MusicWheel when in BuildWheelItemData(), and under case SORT_ENDLESS_COURSES. Automatically generated courses will cause there to be no group name, and the default (preferred) sort. When this function does not return a value, and it gets assigned to c (In MusicWheel), in some cases we will get a crash.
...
By default, I use white in the metrics, this doesn't look "great," but it should be up to the themer.
2006-05-17 06:49:55 +00:00
Chris Danford
9787348bb0
make End virtual
2006-05-17 03:47:29 +00:00
Chris Danford
ad431ea1f1
fix warnings
2006-05-17 03:35:35 +00:00
Sean Burke
b99c1ebdcd
Fix typo here as well
2006-05-16 10:06:04 +00:00
Sean Burke
498c8fcefb
I suppose that this is a better way to do it
2006-05-16 10:04:36 +00:00
Sean Burke
bce9d557dc
Fix typo and comment out, at least until Course::GetColor includes a case for it
2006-05-16 09:51:35 +00:00
Chris Danford
f22d32f70a
fix catalog.xml out of date after reloading songs
2006-05-16 06:01:12 +00:00
Chris Danford
721d2083b9
don't show edit description in the item name (it's already in the difficulty meter)
2006-05-16 05:41:40 +00:00
Chris Danford
73d559156f
set default profile ID when creating profiles
2006-05-16 05:28:26 +00:00
Josh Allen
dfa54b5acc
Language strings
2006-05-16 03:33:22 +00:00
Josh Allen
8fe83f73a3
Force event mode for online play
2006-05-16 03:32:01 +00:00
Chris Danford
a31d6a334a
fix copy edits message
2006-05-16 01:48:59 +00:00
Chris Danford
7caf4adce7
hide locked steps
2006-05-16 01:47:09 +00:00
Chris Danford
ede57d64ad
add GetNumSelectableAndUnlockedSongs, add GetMD5ForString
2006-05-16 00:47:02 +00:00
Steve Checkoway
51b2438668
Remove, again.
2006-05-14 09:14:28 +00:00
Steve Checkoway
b912d61546
Following Wolfman's example, some comments so that maybe next time I look at this I won't see vec_ctf and think "capture the flag?"
2006-05-14 08:13:16 +00:00
Steve Checkoway
4995793c0b
Quiet warning when building for i386.
2006-05-14 08:12:37 +00:00
Steve Checkoway
2b02ad8151
Cleanup.
2006-05-14 08:09:22 +00:00
Steve Checkoway
f39e79efed
The last of the changes, I hope.
2006-05-14 07:04:28 +00:00
Jason Felds
e0c4a4e93c
Tab fix (I was not using 4 spaces per tab).
2006-05-14 03:44:50 +00:00
Jason Felds
0c66c23f7b
Adding comments to the code.
2006-05-14 03:31:10 +00:00
Steve Checkoway
60d3b90552
I thought I fixed this already. This section ranges from 42 to 47.
2006-05-07 11:13:21 +00:00
Chris Danford
01f2f3759f
fix VC7 warning
2006-05-07 10:02:27 +00:00
Chris Danford
fe72b07c05
add compress flag
2006-05-07 09:27:58 +00:00
Chris Danford
5500d09baa
select default language
2006-05-07 09:25:48 +00:00
Steve Checkoway
c2b857d01c
Remove bloated c++ wrapper.
2006-05-06 11:19:25 +00:00
Chris Danford
a9ee0360fa
don't backspace on IET_LEVEL_CHANGED
2006-05-06 04:40:36 +00:00
Chris Danford
55f231854b
select the song after it's unlocked
2006-05-06 01:29:24 +00:00
Chris Danford
b97310cee0
play init command only once
2006-05-05 21:48:58 +00:00
Chris Danford
0a460a92db
load xml from global bganimations
2006-05-05 21:48:50 +00:00
Chris Danford
68425c887e
Fix backgrounds always choosing the first random movie. Choose the same random backgrounds every time a song is played. Fix background layer reset after BackgroundTransition.
2006-05-05 19:21:29 +00:00
Steve Checkoway
431f13437b
Unused otherwise.
2006-05-05 09:41:23 +00:00