本文整理汇总了C++中UserClass::GetCharacterCode方法的典型用法代码示例。如果您正苦于以下问题:C++ UserClass::GetCharacterCode方法的具体用法?C++ UserClass::GetCharacterCode怎么用?C++ UserClass::GetCharacterCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserClass
的用法示例。
在下文中一共展示了UserClass::GetCharacterCode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DrawChar
/*キャラクタ描画*/
void TextGraphClass::DrawChar(UserClass &User){
//キャラクタ描画
switch( User.GetCharacterCode() ){
case GAME_CHAR::AI:
DrawGraph(CharacterPoint[GRAPH::X],CharacterPoint[GRAPH::Y],CharacterHandle,TRUE);
break;
case GAME_CHAR::NOT:
break;
}
}
示例2: SetGameData
/*現在のデータをセット*/
void TextClass::SetGameData(UserClass &User){
//時間関係
time_t now;
struct tm *Date;
time(&now);
Date = localtime(&now);
SaveData.SceneCount = SceneCount;
SaveData.TextCount = TextCount;
SaveData.SerifCount = SerifCount;
SaveData.BGMCode = User.GetBGMCode();
SaveData.BackCode = User.GetBackCode();
SaveData.CharCode = User.GetCharacterCode();
SaveData.Year = Date->tm_year+1900;
SaveData.Mon = Date->tm_mon+1;
SaveData.Day = Date->tm_mday;
SaveData.TextLength = Text[SceneCount][TextCount].size();
strcpy(SaveData.Text,Text[SceneCount][TextCount].c_str());
//現在カウントを更新
User.SetSaveData(SaveData);
}