Ivan Savenko
|
033b2889c4
|
Add proxy connection mode for lobby rooms
|
2024-01-19 23:52:28 +02:00 |
|
Ivan Savenko
|
709905b1a0
|
Simplified networking API
|
2024-01-19 23:52:28 +02:00 |
|
Ivan Savenko
|
9fb7d2817a
|
Implemented connection of match server to global lobby
|
2024-01-19 23:52:28 +02:00 |
|
Ivan Savenko
|
80e960bc8e
|
Finalized new TCP networking API
|
2024-01-19 23:52:28 +02:00 |
|
Ivan Savenko
|
ffa58152ac
|
Client-side support for hosting game server via lobby
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
11c2708d83
|
Simplify server networking code, disable player takeover by AI for now
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
aa7ecea683
|
Switch turn timers handling to boost asio timer
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
d6869160c5
|
Simplify networking code on server
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
c9765a52ff
|
Do not accept connections into ongoing game
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
22f0ca67c6
|
Fix connection to game lobby & map load
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
0a1153e1c6
|
Switch client-server communication to new API
|
2024-01-19 23:49:59 +02:00 |
|
Ivan Savenko
|
d04241b10a
|
Code cleanup
|
2024-01-19 23:02:00 +02:00 |
|
Ivan Savenko
|
e50f586d8b
|
Stabilization
|
2024-01-19 14:21:13 +02:00 |
|
Ivan Savenko
|
6e629a6a5f
|
split getBonusLocalFirst into two distinct method:
- const method getFirstBonus that returns single matching bonusToString
- non-const method getLocalBonus that returns bonus from current node
|
2024-01-19 13:56:06 +02:00 |
|
Ivan Savenko
|
e67e4430ba
|
Removed most of non-const static fields in lib. Reduced header includes.
|
2024-01-19 13:55:22 +02:00 |
|
Ivan Savenko
|
a15366f5a5
|
Make IObjectInterface::cb non-static
|
2024-01-19 13:55:21 +02:00 |
|
Ivan Savenko
|
d5c4478816
|
Remove most of non-const access to VLC entities
|
2024-01-19 13:54:49 +02:00 |
|
Ivan Savenko
|
bd5682ecc3
|
Merge remote-tracking branch 'vcmi/master' into develop
|
2024-01-19 13:49:54 +02:00 |
|
Ivan Savenko
|
3e8f110482
|
Merge pull request #3515 from SoundSSGood/backpack-statusbar
Backpack statusbar
|
2024-01-18 16:05:42 +02:00 |
|
SoundSSGood
|
8d4b74b441
|
Assembling in backpack fixed
|
2024-01-18 12:49:08 +02:00 |
|
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 |
|
Alexander Wilms
|
cca08e29da
|
Remove duplicate semicolons
|
2024-01-16 19:02:39 +00:00 |
|
Ivan Savenko
|
4735ad8299
|
Automatically activate scholar skill on visiting town
|
2024-01-15 23:16:53 +02:00 |
|
Ivan Savenko
|
c21913f661
|
Fixed initialization of move points and mana for dismissed heroes
|
2024-01-15 23:16:48 +02:00 |
|
Ivan Savenko
|
a32ef673f7
|
Merge pull request #3482 from IvanSavenko/extend_hota_bonuses
Extend hota bonuses
|
2024-01-15 13:47:13 +02:00 |
|
Ivan Savenko
|
a582cb554e
|
Merge pull request #3500 from IvanSavenko/fix_dendroid_bind
[1.4.3] Fix handling of Dendroid's Bind ability
|
2024-01-15 12:02:06 +02:00 |
|
Ivan Savenko
|
b4a1a755a4
|
Merge pull request #3498 from IvanSavenko/simturns_pathfinder
[1.4.3] Fixes for simultaneous turns
|
2024-01-15 12:00:54 +02:00 |
|
Ivan Savenko
|
c940bf226e
|
Merge pull request #3499 from IvanSavenko/bugfixing
[1.4.3] Bugfixing
|
2024-01-15 12:00:31 +02:00 |
|
DjWarmonger
|
19765e0e01
|
Merge pull request #3480 from IvanSavenko/rmg_ban_starting_heroes
Ban starting heroes in RMG
|
2024-01-14 21:56:16 +01:00 |
|
Ivan Savenko
|
0d0d3d8c80
|
Renamed speed -> getMovementRange, remove misleading default parameter
|
2024-01-14 17:14:36 +02:00 |
|
Ivan Savenko
|
5565b55bb0
|
Fixed handling of SPELL_AFTER_ATTACK without addInfo field
|
2024-01-14 17:13:33 +02:00 |
|
Ivan Savenko
|
45a3d04d25
|
Fix simturns termination check
|
2024-01-13 23:23:36 +02:00 |
|
Ivan Savenko
|
8303ce5d13
|
Added option to ignore guards in pathfinder
Used for simturns contact detection, by default disabled for player
pathfinding
|
2024-01-13 19:44:37 +02:00 |
|
Ivan Savenko
|
397da95969
|
More human-readable messages for simturns contact attempts
|
2024-01-13 19:40:19 +02:00 |
|
Ivan Savenko
|
4f44276dd3
|
Add attribute to always-throwing methods
|
2024-01-13 19:39:45 +02:00 |
|
Laserlicht
|
4e69853ca8
|
vcmiobelisk bugfix
|
2024-01-13 16:05:12 +01:00 |
|
Ivan Savenko
|
fc6a9924ee
|
FIRST_STRIKE now supports ranged / melee subtypes, BLOCKS_RETALIATION
will properly block FIRST_STRIKE
|
2024-01-13 16:54:06 +02:00 |
|
Ivan Savenko
|
bb670cfb82
|
Merged accurate shot bonus into death stare bonus
|
2024-01-13 15:55:07 +02:00 |
|
Ivan Savenko
|
ca2df49fbb
|
Block usage of preselected starting heroes for prisons in RMG
|
2024-01-13 14:08:36 +02:00 |
|
Ivan Savenko
|
f6e0f46040
|
Merge pull request #3467 from dydzio0614/hota-fixes
Fix HotA creature abilities (add bonuses allowing implementing them)
|
2024-01-12 21:55:18 +02:00 |
|
M
|
9ee526d202
|
Fixes from code review
|
2024-01-11 21:10:22 +01:00 |
|
M
|
3a83de5e70
|
Simplified code a bit
|
2024-01-10 23:56:32 +01:00 |
|
M
|
bf7c6a4c3f
|
Extract method for death stare / accurate shot, fix translation key
|
2024-01-10 23:23:10 +01:00 |
|
Alexander Wilms
|
f3277b7953
|
Define each identifier in a dedicated statement
|
2024-01-10 00:22:23 +00:00 |
|
Dydzio
|
3c95f92c59
|
Update documentation
|
2024-01-07 21:22:10 +01:00 |
|
Dydzio
|
5dac8e2bbf
|
Extract spell layers processing into separate method
|
2024-01-07 21:05:55 +01:00 |
|
Dydzio
|
310802ed87
|
Second version of spell layers bonus extension
|
2024-01-07 20:48:03 +01:00 |
|
Dydzio
|
bb925e4cb0
|
First version of sea witch / sorceress ability
|
2024-01-07 19:27:32 +01:00 |
|
Dydzio
|
b32c7beb05
|
Make one common handler for death stare and accurate shot
|
2024-01-06 18:26:13 +01:00 |
|
Ivan Savenko
|
cf47fbb729
|
Merge pull request #3435 from IvanSavenko/bugfixing
[1.4.3] Bugfixing
|
2024-01-06 13:06:07 +02:00 |
|