Commit Graph
12460 Commits
Author SHA1 Message Date
Glenn Maynard 21bbc0124d simplify 2004-11-26 23:14:35 +00:00
Glenn Maynard 855cae4f47 cleanup 2004-11-26 22:53:16 +00:00
Glenn Maynard 5ab845ce08 fix corruption 2004-11-26 22:48:29 +00:00
Glenn Maynard 151a61ef7a fix check 2004-11-26 21:13:55 +00:00
Glenn Maynard 722a0ad8b0 fall through after getting header 2004-11-26 21:10:41 +00:00
Glenn Maynard f74a35d45b "Addy" -> Address. 2004-11-26 21:00:05 +00:00
Glenn Maynard d19a2c6b69 I can't even guess why a RageFile enum value was hardcoded ...
Don't call Flush(), Close() does that.
Stream output.
2004-11-26 20:58:38 +00:00
Glenn Maynard 530c46b1b8 simplify 2004-11-26 20:52:08 +00:00
Glenn Maynard 5383707e3b remove some excess punctuation, eg. if( ( x == y ) ) 2004-11-26 20:49:18 +00:00
Glenn Maynard 9c2d06e150 string::find() result is a size_t, not an int
unwrap conditional
return after error, or the output string will just be overwritten
2004-11-26 20:48:06 +00:00
Glenn Maynard 4d98c72902 m_iResponceName -> m_sResponseName
CString::find and CString::Find are not interchangeable; Find() is only
for compatibility, prefer find()
2004-11-26 20:45:26 +00:00
Glenn Maynard 5a51991740 find does not return < 0
reponce -> response
2004-11-26 20:43:47 +00:00
Glenn Maynard be93eb845d scope/style cleanup
if ReadData returns -1, be sure to not append(-1)
2004-11-26 20:41:13 +00:00
Glenn Maynard 41d6f9ad2c m_iResponceCode -> m_iResponseCode 2004-11-26 20:37:59 +00:00
Glenn Maynard 82d76ea224 more style cleanups 2004-11-26 20:37:32 +00:00
Glenn Maynard 2c566f6391 Cleanup: instead of
func
{
  if( x )
  {
   three pages of code
  }
}

do
func
{
  if( !x )
    return;
  three pages of code;
}

which reduces the indentation level and is easier to understand.
2004-11-26 20:36:23 +00:00
Glenn Maynard cf54c6fea7 join all
"headder" -> header
2004-11-26 20:33:46 +00:00
Glenn Maynard 9e46888c7d Style cleanups: don't overparenthesize, if( x ), not if ( x ) 2004-11-26 20:18:23 +00:00
Glenn Maynard 25d12ee6a4 fix warning 2004-11-26 20:15:50 +00:00
Glenn Maynard 166bb5b451 If you use code from someone else, list them, not where you got the code from. 2004-11-26 20:02:01 +00:00
Glenn Maynard 7caea1f23a cleanup (this stuff appears stubbed on xbox) 2004-11-26 19:58:36 +00:00
Glenn Maynard 07f7827cec typo 2004-11-26 19:47:26 +00:00
Glenn Maynard 83da2ee50f fix assert output 2004-11-26 19:45:03 +00:00
Charles Lohr a012b208c1 Fix: Don't use ITOA 2004-11-26 18:39:43 +00:00
Chris Danford a862f62b4f minor cleanup 2004-11-26 17:37:09 +00:00
Chris Danford 7f336c2ce6 self-registering screen classes 2004-11-26 17:28:47 +00:00
Charles Lohr b333841085 OOps, maybe the work around will work this time around. 2004-11-26 16:17:01 +00:00
Charles Lohr 7963914c37 Fix: GCC include, enum type, a work around, and a minor fix. 2004-11-26 15:55:34 +00:00
Ryan Dortmans 1f52adc59f Xbox: Reset virtual keyboard before taking input 2004-11-26 14:38:35 +00:00
Ryan Dortmans f9e0cfb07c StepsID::Invalidate -> StepsID::ClearCache 2004-11-26 14:26:20 +00:00
Charles Lohr f84df92e13 Add: ScreenPackages 2004-11-26 07:20:03 +00:00
Charles Lohr 1f32396aa1 Cleanup: Move metrics common to all ScreenEvaluation screens to ScreenEvaluation. 2004-11-26 07:00:42 +00:00
Chris Danford db04a5e89a move ScreenSystemLayer to a separate file 2004-11-25 19:16:46 +00:00
Chris Danford 0c55fd0684 fix some stale StepsID entries hang around after unloading edits 2004-11-24 16:59:57 +00:00
Chris Danford 243d63094f StepsID cache needs both Song and Steps 2004-11-24 16:42:05 +00:00
Chris Danford 8e476b97c0 bug fix: HighScores for edits don't match correctly because the hash is ignored 2004-11-24 16:32:21 +00:00
Chris Danford 8fe7c75a9a cleanup
Don't use GetSteps with the really long parameter list absolutely necessary.
2004-11-24 16:25:47 +00:00
Chris Danford 0b64a246f9 add checkpoints 2004-11-24 03:49:17 +00:00
Charles Lohr 2aacb108b7 OOps. We populate the list, but never show it. 2004-11-24 02:38:06 +00:00
Glenn Maynard 2f77f403ef unused variable 2004-11-24 00:51:40 +00:00
Charles Lohr 70ea342ac1 Move: Utility from ActorUtil to ScreenNetBase 2004-11-24 00:00:56 +00:00
Charles Lohr 4954a4bb8d Fix warnings with 0's & fix metrics for SET_QUAD_INIT conversion. 2004-11-23 22:08:02 +00:00
Charles Lohr b43d281b78 Cleanup; Get rid of nasty repetitive code. 2004-11-23 22:06:27 +00:00
Charles Lohr b125fea899 Update 2004-11-23 20:58:30 +00:00
Charles Lohr ed038d8a97 Allow for screen switching. 2004-11-23 20:54:22 +00:00
Charles Lohr 619f1ff297 Add: Anims for new screen. 2004-11-21 07:10:38 +00:00
Charles Lohr 478b23e404 Metrics for the new NetRoom Screen. Also, for general development purposes, I am adding Network Options to the CVS list so that other developers who work with the network can use it, like the XBOX people. 2004-11-21 07:08:33 +00:00
Charles Lohr 3b0e39665d Add: Most of the Net Room for SMOnline. There's only a little more to add. 2004-11-21 07:05:18 +00:00
Steve Checkoway ed50b079b2 oops. We do not need this framework. 2004-11-20 23:23:15 +00:00
Steve Checkoway e26cc3d62f update 2004-11-20 22:58:37 +00:00