1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/scripting/lua/api
Alexander Wilms 73019c204d Replace redundant types with auto for the lvalues of template factory functions for smart pointers
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)
2024-01-17 12:50:00 +00:00
..
battle vcmi: rename IFactionMember and ICreature 2023-05-02 00:54:53 +03:00
events fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
netpacks Fix Lua and test building 2023-10-23 16:05:38 +03:00
Artifact.cpp vcmi: rename HeroBonus.h to Bonus.h 2023-05-02 11:20:58 +03:00
Artifact.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
BattleCb.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
BattleCb.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
BonusSystem.cpp Update docs 2023-10-22 16:55:19 +03:00
BonusSystem.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Creature.cpp vcmi: rename HeroBonus.h to Bonus.h 2023-05-02 11:20:58 +03:00
Creature.h vcmi: massive refactoring v1 2023-04-05 22:33:12 +03:00
Faction.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
Faction.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
GameCb.cpp Fix build 2023-11-15 15:55:19 +02:00
GameCb.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
HeroClass.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
HeroClass.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
HeroInstance.cpp fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
HeroInstance.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
HeroType.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
HeroType.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
ObjectInstance.cpp fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
ObjectInstance.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Player.cpp vcmi: massive refactoring v1 2023-04-05 22:33:12 +03:00
Player.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Registry.cpp Replace redundant types with auto for the lvalues of template factory functions for smart pointers 2024-01-17 12:50:00 +00:00
Registry.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
ServerCb.cpp Fix Lua and test building 2023-10-23 16:05:38 +03:00
ServerCb.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Services.cpp fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Services.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Skill.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
Skill.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
Spell.cpp VcmiLua builds properly now 2023-02-01 20:25:09 +01:00
Spell.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
StackInstance.cpp fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00
StackInstance.h fix building vcmiLua for iOS 2022-09-24 15:55:24 +03:00