DesignPattern/21.StatePattern/2.Code/GameAccout.cpp

72 lines
1.2 KiB
C++
Raw Normal View History

2019-11-09 02:41:43 +00:00
#include "GameAccount.h"
#include "Level.h"
#include <Windows.h>
#include <time.h>
#define random(x) (rand()%x)
GameAccount::GameAccount(){
2021-10-28 15:15:51 +00:00
level = nullptr;
printf("创立游戏角色积分100级别PRIMARY\n");
2019-11-09 02:41:43 +00:00
score = 100;
name = "none";
setLevel(new Primary(this));
}
GameAccount::GameAccount(string iName){
2021-10-28 15:15:51 +00:00
level = nullptr;
printf("创立游戏角色积分100级别PRIMARY\n");
2019-11-09 02:41:43 +00:00
score = 100;
name = iName;
setLevel(new Primary(this));
}
void GameAccount::setLevel(Level* iLevel){
2021-10-28 15:15:51 +00:00
if(level != nullptr){
delete level;
level = nullptr;
}
2019-11-09 02:41:43 +00:00
this->level = iLevel;
}
string GameAccount::getName(){
return name;
}
void GameAccount::playCard(){
this->level->playCard();
Sleep(100);
srand((int)time(0));
int res = random(2);
if (res % 2 == 0){
this->win();
}
else{
this->lose();
}
this->level->upgradeLevel();
}
void GameAccount::win(){
if (this->getScore() < 200){
setScore(getScore() + 50);
}
else{
setScore(getScore() + 100);
}
2021-10-28 15:15:51 +00:00
printf("\n\t胜利,最新积分为 %d\n", score);
2019-11-09 02:41:43 +00:00
}
void GameAccount::lose(){
setScore(getScore() + 30);
2021-10-28 15:15:51 +00:00
printf("\n\t输牌,最新积分为 %d\n", score);
2019-11-09 02:41:43 +00:00
}
int GameAccount::getScore(){
return this->score;
}
void GameAccount::setScore(int iScore){
this->score = iScore;
}