1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/AI
Alexander Wilms 522cb571b3 Remove redundant virtual specifiers
`grep -nr virtual | grep -v googletest | grep override > ../redundant_virtual.txt`

```python
import os

with open("../redundant_virtual.txt") as f:
    for line in f:
        print()
        line: str = line.strip()
        print(line)
        tmp = line.split(":")
        file = tmp[0].strip()
        code = tmp[-1].strip()
        print(file)
        print(code)
        new_code = code.replace("virtual ", "", 1)
        # https://superuser.com/a/802490/578501
        command = f"export FIND='{code}' && export REPLACE='{new_code}' && ruby -p -i -e \"gsub(ENV['FIND'], ENV['REPLACE'])\" {file}"
        os.system(command)
```
2024-02-10 20:46:13 +01:00
..
BattleAI Merge pull request #3594 from vcmi/fix-3550 2024-02-04 10:07:44 +02:00
EmptyAI Remove redundant virtual specifiers 2024-02-10 20:46:13 +01:00
FuzzyLite@7aee562d6c vcmi: new commits in submodules 2023-04-27 20:59:55 +03:00
Nullkiller Remove redundant virtual specifiers 2024-02-10 20:46:13 +01:00
StupidAI Added RandomGeneratorUtil::nextItemWeighted convenience method 2024-01-31 00:17:40 +02:00
VCAI Remove redundant virtual specifiers 2024-02-10 20:46:13 +01:00
CMakeLists.txt enable StupidAI and EmptyAI for static AI 2023-03-02 12:09:49 +03:00
FuzzyLite.cbp
GeniusAI.brain convert line endings from CRLF (Windows) to LF (Linux/Unix) 2023-10-19 16:23:21 +02:00