New branch: attempt to add Fakes to the radar.

At this point, the code still compiles.
Running? No guarantees. More work to be done.
This commit is contained in:
Jason Felds
2011-02-27 21:52:59 -05:00
parent d9a195d4c2
commit 84ca444bd2
3 changed files with 3 additions and 0 deletions
+1
View File
@@ -36,6 +36,7 @@ static const char *RadarCategoryNames[] = {
"Hands", "Hands",
"Rolls", "Rolls",
"Lifts", "Lifts",
"Fakes",
}; };
XToString( RadarCategory ); XToString( RadarCategory );
XToLocalizedString( RadarCategory ); XToLocalizedString( RadarCategory );
+1
View File
@@ -39,6 +39,7 @@ enum RadarCategory
RadarCategory_Hands, /**< How many hands are in the song? */ RadarCategory_Hands, /**< How many hands are in the song? */
RadarCategory_Rolls, /**< How many rolls are in the song? */ RadarCategory_Rolls, /**< How many rolls are in the song? */
RadarCategory_Lifts, /**< How many lifts are in the song? */ RadarCategory_Lifts, /**< How many lifts are in the song? */
RadarCategory_Fakes, /**< How many fakes are in the song? */
NUM_RadarCategory, /**< The number of radar categories. */ NUM_RadarCategory, /**< The number of radar categories. */
RadarCategory_Invalid RadarCategory_Invalid
}; };
+1
View File
@@ -28,6 +28,7 @@ struct RadarValues
float fNumHands; float fNumHands;
float fNumRolls; float fNumRolls;
float fNumLifts; float fNumLifts;
float fNumFakes;
} v; } v;
float f[NUM_RadarCategory]; float f[NUM_RadarCategory];
} m_Values; } m_Values;