X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=bs%2Fplanet.cpp;h=1f904f82685ff101d4d392c644a6f269801089c4;hb=bb4169deef42f91b6afa4c4561f9339fba040f01;hp=0da7d97a30ddc30b733ec8069470021f1472c0c1;hpb=515395613c36c35c3797bc085f6d54a8ac7725d9;p=hbs.git diff --git a/bs/planet.cpp b/bs/planet.cpp index 0da7d97..1f904f8 100644 --- a/bs/planet.cpp +++ b/bs/planet.cpp @@ -23,7 +23,6 @@ using namespace std; Planet::Planet() { m_sRace = "Planet"; - m_iScore = 0; } Planet::~Planet(){ @@ -31,18 +30,53 @@ Planet::~Planet(){ ////////////////////////////////////////////////////////////////////////// // -unsigned Planet::planetScore() const +unsigned Planet::planetScore(int tick = 0) const { - return m_iScore; + int ticks = m_Score.size(); + if (ticks == 0) + return 0; + + --ticks; + + if (ticks < tick) + return m_Score[ticks]; + + return m_Score[tick]; } ////////////////////////////////////////////////////////////////////////// // -void Planet::setPlanetScore(unsigned i) +void Planet::setPlanetScore(unsigned number, int tick = 0) { - m_iScore = i; + int earlier = 0; + int ticks = m_Score.size(); + + if (ticks != 0) + earlier = m_Score[ticks - 1]; + + for (int i = ticks; i <= tick; ++i) + { + m_Score.push_back(earlier); + } + m_Score[tick] = number; } +////////////////////////////////////////////////////////////////////////// +// +void Planet::addPlanetScore(unsigned number, int tick = 0) +{ + int earlier = 0; + int ticks = m_Score.size(); + + if (ticks != 0) + earlier = m_Score[ticks - 1]; + + for (int i = ticks; i <= tick; ++i) + { + m_Score.push_back(earlier); + } + m_Score[tick] += number; +} ////////////////////////////////////////////////////////////////////////// // int Planet::roids(std::string type, int tick = 0) const @@ -144,6 +178,9 @@ void Planet::runBattle(std::vector friendly, std::vector hostile allFriends.distributeLossesGains(friends, tick); allHostiles.distributeLossesGains(hostiles, tick); + allHostiles.distributeCappedRoids(hostiles, tick); + + calculateScoreLoss(friends, tick); /* for (RoidList::iterator i = m_Roids.begin(); i != m_Roids.end(); ++i) setRoids(i->first, roids(i->first, 1), tick);*/ @@ -171,7 +208,7 @@ void Planet::calcOneTick(Planet* friendly, Fleet* hostile, std::mapsecond; - cerr << "Initiative: " << s_Units[unittype].initiative() << " with unit: " << unittype << endl; + //cerr << "Initiative: " << s_Units[unittype].initiative() << " with unit: " << unittype << endl; if (s_Units[unittype].type() == "EMP") { @@ -192,9 +229,9 @@ void Planet::calcOneTick(Planet* friendly, Fleet* hostile, std::map 0) + if (planetScore(tick - 1) > 0) { - float capping = float(m_iScore) / hostile->score() / 10; + float capping = float(planetScore(tick - 1)) / hostile->score() / 10; cerr << "Capping is: " << capping << endl; @@ -219,12 +256,12 @@ void Planet::calcOneTick(Planet* friendly, Fleet* hostile, std::mapfirst, caproids, tick); - //FIXME: Going to move this to the distribute roids section instead.. + //FIXME: Going to move this to the distribute roids section instead.. Not really move, I'll keep this, but "regenerate" the pods in the distribute ships function. hostiletemp->killFleet(unittype, caproids, 1); - int totroids = caproids + hostiletemp->resource(roid->first, 0); - hostiletemp->setResource(roid->first, totroids, 1); + //int totroids = caproids + hostiletemp->resource(roid->first, 0); + hostiletemp->addResource(roid->first, caproids, 1); - cerr << totroids << " stolen " << roid->first << " roids\n"; + cerr << caproids << " stolen " << roid->first << " roids\n"; } } } @@ -238,3 +275,15 @@ void Planet::calcOneTick(Planet* friendly, Fleet* hostile, std::map friendly, int tick = 1) +{ + for (vector::iterator i = friendly.begin(); i != friendly.end(); ++i) + { + if ((*i)->name().find("Home") != string::npos) + { + int scorechange = (*i)->score(tick) - (*i)->score(tick - 1); + addPlanetScore(scorechange, tick); + } + } +} +