mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-16 10:19:47 +02:00
73019c204d
grep -r --include \*.h --include \*.cpp "= std::" * | grep -v auto | grep -Po ".*[^ ]+ [^ ]+ [^ ]*[ ]*=.*;" | grep -v "auto\|int\|char\|bool\|float|\double\|for\|if\|googletest\|fuzzylite\|size_t\|using\|return" | grep -v double | grep -v si64 | grep -v si32 | grep -v ui32 | grep \< | grep -v float | tr -d '\t' | grep -v assert > redundant_types.txt import re with open("redundant_types.txt") as f: for line in f: line = line.strip() path = line.split(":", 1)[0] original_code = ":".join(line.split(":")[1:]).strip() print() print(path) print(original_code) prefix = "auto " if original_code.startswith("static"): static = True else: static = False cpp_type = " ".join(original_code.split("=")[0].strip().split(" ")[0:-1]) print(cpp_type) if static: new_code = "static auto "+ " ".join(original_code.split(" ")[2:]) else: new_code = "auto "+ " ".join(original_code.split(" ")[1:]) print(new_code) if True: with open(path, "r") as f: filedata = f.read() filedata = filedata.replace(original_code, new_code) with open(path, "w") as f: f.write(filedata)
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/*
|
|
* CreatureCostBox.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "CreatureCostBox.h"
|
|
#include "widgets/Images.h"
|
|
#include "widgets/TextControls.h"
|
|
#include "gui/CGuiHandler.h"
|
|
|
|
CreatureCostBox::CreatureCostBox(Rect position, std::string titleText)
|
|
{
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
setRedrawParent(true);
|
|
pos = position + pos.topLeft();
|
|
|
|
title = std::make_shared<CLabel>(pos.w/2, 10, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, titleText);
|
|
}
|
|
|
|
void CreatureCostBox::set(TResources res)
|
|
{
|
|
for(auto & item : resources)
|
|
item.second.first->setText(std::to_string(res[item.first]));
|
|
}
|
|
|
|
void CreatureCostBox::createItems(TResources res)
|
|
{
|
|
resources.clear();
|
|
|
|
OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
|
|
|
|
TResources::nziterator iter(res);
|
|
while(iter.valid())
|
|
{
|
|
auto image = std::make_shared<CAnimImage>(AnimationPath::builtin("RESOURCE"), iter->resType);
|
|
auto text = std::make_shared<CLabel>(15, 43, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, "0");
|
|
|
|
resources.insert(std::make_pair(iter->resType, std::make_pair(text, image)));
|
|
iter++;
|
|
}
|
|
|
|
if(!resources.empty())
|
|
{
|
|
int curx = pos.w / 2 - (16 * (int)resources.size()) - (8 * ((int)resources.size() - 1));
|
|
//reverse to display gold as first resource
|
|
for(auto & currentRes : boost::adaptors::reverse(resources))
|
|
{
|
|
currentRes.second.first->moveBy(Point(curx, 22));
|
|
currentRes.second.second->moveBy(Point(curx, 22));
|
|
curx += 48;
|
|
}
|
|
}
|
|
redraw();
|
|
}
|