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:
@@ -36,6 +36,7 @@ static const char *RadarCategoryNames[] = {
|
|||||||
"Hands",
|
"Hands",
|
||||||
"Rolls",
|
"Rolls",
|
||||||
"Lifts",
|
"Lifts",
|
||||||
|
"Fakes",
|
||||||
};
|
};
|
||||||
XToString( RadarCategory );
|
XToString( RadarCategory );
|
||||||
XToLocalizedString( RadarCategory );
|
XToLocalizedString( RadarCategory );
|
||||||
|
|||||||
@@ -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
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user