SoundSSGood
|
39a0e56169
|
suggested changes
|
2024-04-08 14:57:58 +03:00 |
|
SoundSSGood
|
2cdf2b4083
|
fixed missed trader text
|
2024-03-25 17:38:43 +02:00 |
|
SoundSSGood
|
c6c213c454
|
CMarketBase::hRight CMarketBase::hLeft removed. Final changes
|
2024-03-25 12:56:46 +02:00 |
|
SoundSSGood
|
cc14f85445
|
Refactoring. Regressions fixing.
|
2024-03-25 12:55:05 +02:00 |
|
SoundSSGood
|
433d55cac3
|
Market window unified
|
2024-03-25 12:44:34 +02:00 |
|
SoundSSGood
|
ae8d70748b
|
Altar artifacts widget refactoring
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
4839891de4
|
Cleanup & refactoring
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
f3fa6714dc
|
Artifacts selling widget
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
bb7137545f
|
Artifacts market widget
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
4e0ea7355b
|
Transfer resources widget
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
4d3bf882ed
|
market resources widget
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
6b658bf9c1
|
freelancer guild widget
|
2024-03-25 12:44:33 +02:00 |
|
SoundSSGood
|
0813fdbf8c
|
market window
|
2024-03-25 12:44:33 +02:00 |
|
Ivan Savenko
|
4b2cba96cc
|
Merge pull request #3646 from IvanSavenko/configurable_button
Configurable buttons
|
2024-03-04 13:34:40 +02:00 |
|
Ivan Savenko
|
83eb0ea28f
|
Merge pull request #3625 from IvanSavenko/exchange_in_town
Better hero exchange in town
|
2024-03-04 13:34:15 +02:00 |
|
Ivan Savenko
|
22f23ba6f8
|
Restore previously disabled functionality
|
2024-02-29 16:47:44 +02:00 |
|
Ivan Savenko
|
ddb2acb9c2
|
Code cleanup
|
2024-02-29 15:39:13 +02:00 |
|
Ivan Savenko
|
20008cd5a5
|
Replaced premade buttons on hero screen with generated ones
|
2024-02-29 13:57:25 +02:00 |
|
Ivan Savenko
|
0051ffa7a9
|
Implemented configurable buttons. Replaced 'animateLonelyFrame' logic.
|
2024-02-29 13:57:25 +02:00 |
|
Ivan Savenko
|
07d201502e
|
Refactoring of button class to prepare for configurable button
|
2024-02-29 13:57:25 +02:00 |
|
Ivan Savenko
|
658747d342
|
Code cleanup
|
2024-02-27 14:45:15 +02:00 |
|
Ivan Savenko
|
99cb1df91d
|
Fixes for positioning on popups with components
|
2024-02-27 13:15:16 +02:00 |
|
Ivan Savenko
|
93b3cb3af5
|
Better size & positioning of infoboxes
|
2024-02-26 22:04:30 +02:00 |
|
Ivan Savenko
|
4b4dedeab9
|
Code formatting
|
2024-02-26 18:53:12 +02:00 |
|
Ivan Savenko
|
e6b339448f
|
Refactoring & deduplication of infowindow code
|
2024-02-26 18:32:15 +02:00 |
|
Ivan Savenko
|
658cc14cd0
|
Removed direct usage of SDL_Surface in info windows
|
2024-02-26 15:49:27 +02:00 |
|
Ivan Savenko
|
5419df1140
|
Removed no longer used class
|
2024-02-26 15:49:27 +02:00 |
|
Ivan Savenko
|
82eea1abc1
|
Remove unused variable
|
2024-02-19 16:49:59 +02:00 |
|
Ivan Savenko
|
8b60275a6e
|
Hero exchange in town is now activated by clicking on hero portrait
|
2024-02-18 21:02:24 +02:00 |
|
Ivan Savenko
|
af671d109f
|
Made graphical primitive-based UI more configurable
|
2024-02-18 20:48:45 +02:00 |
|
Ivan Savenko
|
4c70abbeb5
|
Reduced usage of global variables - removed or made const / constexpr
|
2024-02-12 13:49:45 +02:00 |
|
Ivan Savenko
|
6e399eb21a
|
Make some non-const static variables const or constexpr
|
2024-02-12 13:22:54 +02:00 |
|
Ivan Savenko
|
f2ecd4cf11
|
Merge branch 'develop' into 'lobby'
|
2024-02-11 16:13:13 +02:00 |
|
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 |
|
Alexander Wilms
|
0495c52cf4
|
Don't call ScreenHandler::onScreenResize() when the window has been (un)maximized to avoid creating a huge texture and crashing
|
2024-02-05 18:59:55 +01:00 |
|
Ivan Savenko
|
d4bedd8d8d
|
Fixed handling of match server crash
|
2024-02-04 19:58:09 +02:00 |
|
Ivan Savenko
|
80fc2bb695
|
Merge remote-tracking branch 'vcmi/develop' into lobby
|
2024-02-03 21:11:34 +02:00 |
|
Ivan Savenko
|
7247038458
|
Merge pull request #3574 from SoundSSGood/altar-fixes
Artifacts altar related fixes
|
2024-02-01 22:27:41 +02:00 |
|
Ivan Savenko
|
facdc9f993
|
Merge pull request #3583 from Laserlicht/town_portal
town portal dialog adjustments
|
2024-02-01 11:30:51 +02:00 |
|
Laserlicht
|
9e7fbc3ca2
|
use localstate
|
2024-01-31 21:29:04 +01:00 |
|
Laserlicht
|
9cd6a6838b
|
fix
|
2024-01-31 11:32:35 +01:00 |
|
Laserlicht
|
ebb2cce8b8
|
rework town portal
|
2024-01-31 02:30:10 +01:00 |
|
Ivan Savenko
|
7992144763
|
Gem class is now Sorceress
|
2024-01-30 23:34:27 +02:00 |
|
Ivan Savenko
|
3abc26e789
|
Moved checks for campaign heroes to CGHeroInstance class
|
2024-01-30 23:33:58 +02:00 |
|
Ivan Savenko
|
26703af8b0
|
Merge pull request #3576 from Alexander-Wilms/conditional-screen-clearing
CVideoHandler: Call SDL_RenderClear() when playing intro, call SDL_Re…
|
2024-01-30 17:36:18 +02:00 |
|
SoundSSGood
|
d16632b54c
|
cleanup & fix build & sonarcloud fixes
|
2024-01-30 01:23:50 +02:00 |
|
Alexander Wilms
|
70ce090bc4
|
CVideoHandler: Use EVideoType::INTRO and EVideoType::SPELLBOOK
|
2024-01-29 16:08:53 +01:00 |
|
SoundSSGood
|
f66918ea14
|
bulk move to altar
|
2024-01-27 15:28:23 +02:00 |
|
Laserlicht
|
a2fd5039ab
|
setting
|
2024-01-27 01:16:55 +01:00 |
|
Ivan Savenko
|
322c5faf63
|
Merge remote-tracking branch 'vcmi/develop' into lobby
|
2024-01-26 16:52:23 +02:00 |
|