Commit Graph

42982 Commits

Author SHA1 Message Date
Shauren
bf0e2fc469 Build: Automatically include WindowsSettings.manifest in all executables instead of listing it separately as source file in every target
(cherry picked from commit a21e7c738e)
2024-09-16 17:32:34 +02:00
Shauren
7972d45a86 Core/Common: Compile ServiceWin32 as part of common project instead of directly adding its source files to both server executables
(cherry picked from commit 052f2d0a81)
2024-09-16 17:32:28 +02:00
Shauren
b0b87aeea1 Core/CrashHandler: Compile WheatyExceptionReport only once and moved its global variable initializer to all projects using it
(cherry picked from commit fd0a7ba871)
2024-09-16 17:32:22 +02:00
Shauren
ec85afdbc7 Core/Common: Output stdout/stderr from child process without waiting for it to finish
(cherry picked from commit f270686201)
2024-09-16 17:32:15 +02:00
Shauren
085aadea36 Core: Remove boost iostreams dependency
(cherry picked from commit dbe8d1f11e)
2024-09-16 17:32:11 +02:00
Ovahlord
3c2aa264c0 Core/DataStores: extract, load and use NpcTotalHp and NpcDamageByClass game tables to initialize the damage and health values of creatures 2024-09-14 18:21:09 +02:00
Ovahlord
768e63ad1a Core/DataStores: updated MAX_LEVEL to 100 as Cata Classic only provides game table data up to level 100 instead of 123 2024-09-14 17:05:51 +02:00
Ovahlord
63491678e2 Core/Units: updated the action button macros for Cataclysm 2024-09-14 09:46:52 +02:00
funjoker
7a486244b0 PacketIO: Fix unit actionbar
(cherry picked from commit 6331b44e0f)
2024-09-13 19:34:26 +02:00
Shauren
e5f8dd0d27 Core/Spells: Fix copypaste mistake in CastSpellExtraArgs::SetTriggeringSpell
(cherry picked from commit 4a574c0ce1)
2024-09-13 19:31:27 +02:00
Shauren
35f6695851 Scripts/Spells: Add missed change for 975e7cc072
(cherry picked from commit b2a9a59364)
2024-09-13 19:31:22 +02:00
Shauren
5a495d8e02 Core/Spells: Refactor CastSpellExtraArgs
* Allow C++20 designated initializers
* Allow precise float values for SPELLVALUE_RADIUS_MOD, SPELLVALUE_CRIT_CHANCE and SPELLVALUE_DURATION_PCT

(cherry picked from commit 975e7cc072)
2024-09-13 19:30:56 +02:00
Shauren
1a00001eb0 Core/Misc: Fix GitRevision::GetHostOSVersion compilation on arch linux, TRINITY_BUILD_HOST_DISTRO_VERSION_ID is not defined there
(cherry picked from commit 652d490b06)
2024-09-12 21:46:49 +02:00
Shauren
1c4f4c3574 Core/DataStores: Refactor DBStorageIterator to make it usable with more std::ranges algorithms
(cherry picked from commit 8ec9b5841e)
2024-09-12 21:46:45 +02:00
Shauren
e0ac52a75a Core/Spells: Remove setting OriginalCastId from CastSpellExtraArgs::SetTriggeringAura
(cherry picked from commit f604661a40)

# Conflicts:
#	src/server/game/Spells/Spell.cpp
2024-09-12 21:46:00 +02:00
Shauren
f2772c13cd Core/DataStores: Fix typos in ModifierTreeType values
Closes #30172

(cherry picked from commit 16464e9aa0)

# Conflicts:
#	src/server/game/DataStores/DBCEnums.h
2024-09-12 21:45:24 +02:00
Ovahlord
b73e4e1662 Core/Spells: implemented SPELL_AURA_MOD_SPELL_POWER_PCT 2024-09-08 22:15:47 +02:00
Ovahlord
58c88ef86a Core/Quests: skip most of the checks in CMSG_QUEST_GIVER_ACCEPT_QUEST for auto accept quests as they have been added before the cmsg comes in 2024-09-08 21:08:37 +02:00
Ovahlord
f359a8710a Core/Player: updated per kill experience to Cataclysm 2024-09-08 13:50:38 +02:00
Ovahlord
008dd1edb0 Core/Quest: fixed retrieving quest objective flags
Closes #30166
2024-09-07 14:28:10 +02:00
funjoker
a0163ff702 Core/Packets: Update structure of CMSG_GET_MIRROR_IMAGE_DATA 2024-09-04 10:54:09 +02:00
funjoker
40e0dcc7d3 Core: Update allowed build to 4.4.0.56420 2024-09-04 09:55:50 +02:00
Shauren
fdd44f70dd Core/Misc: CompilerDefs/GitRevision improvements
* Removed INTEL as a separate platform (it does not belong there)
* Removed BORLAND from known compilers list (it was never supported)
* Simplified TRINITY_PLATFORM_WINDOWS detection (_WIN32 is always defined)
* Rename revision_data.h macros that begin with a underscore
* Added processor architecture to --version string
* Added Linux distribution name to .server debug
* Fixed some revision_data.h macros missing/wrong values when regenerated during compilation
* Removed manual adding of _WIN64 macro from cmake (it is predefined internally by compiler)

(cherry picked from commit e8740fb2e1)

# Conflicts:
#	revision_data.h.in.cmake
2024-09-03 19:56:38 +02:00
Shauren
2592a08df6 Core/Spells: Fixed spell target selection not being shared by multiple effects when there are targeting scripts that have the same script function
(cherry picked from commit b1d8061a0f)
2024-09-03 19:55:16 +02:00
Jeremy
91be11b280 Core/GameObjects: Implement ControlZone::UncontestedTime field (#30152)
(cherry picked from commit 314e155a0c)
2024-09-03 19:55:10 +02:00
Shauren
27c9af1a5e Core/Players: Fixed nested spell overrides (priest Mind Spike)
(cherry picked from commit cdca59ca4d)
2024-09-03 19:54:50 +02:00
ModoX
1c2829e615 Core/Creature: Added additional checks when setting feign death in db
(cherry picked from commit d66f2dcdac)
2024-09-03 19:54:40 +02:00
ModoX
403142829a Core/Unit: Allow UNIT_FLAG2_FEIGN_DEATH and UNIT_FLAG3_FAKE_DEAD setting in db
* seems to become quite common in 11.x to be used w/o auras; example being Kirin Tor Conjuror 212718

(cherry picked from commit 1b4c324fe1)
2024-09-03 19:54:35 +02:00
Ovahlord
a774a83180 Core/Misc: fixed dynamic scripts build 2024-09-02 05:27:06 +02:00
Ovahlord
7704c0cc5a Core/Misc: dropped unused Traits implementation 2024-09-01 20:49:45 +02:00
Ovahlord
5347466b95 fixed unused parameter warning that slipped past msvc compilers 2024-09-01 19:45:23 +02:00
Ovahlord
43b2c5f5de Scripts/Spells: removed post Cataclysm item spell scripts 2024-09-01 19:27:35 +02:00
Ovahlord
8741c032a9 DB: fixed sql naming of file added in 056c9391e6 2024-09-01 19:26:35 +02:00
Ovahlord
01260b0007 buildfix 2024-09-01 19:10:39 +02:00
Ovahlord
b5e681e682 Core/Misc: removed most retail specialization code and restored legacy functionality for Classic 2024-09-01 06:52:54 +02:00
Ovahlord
b0f12aeceb Core/Chat: 39061442fb followup 2024-08-31 22:35:10 +02:00
Ovahlord
39061442fb Core/Chat: updated chat handler to support recent packet changes 2024-08-31 22:34:14 +02:00
Ovahlord
db6d60b712 Core/Packets: updated packet structures of CMSG_CHAT_ADDON_MESSAGE_TARGETED and CMSG_CHAT_MESSAGE_WHISPER 2024-08-31 21:45:15 +02:00
Ovahlord
ef5627c2ce Core/Player: updated hit chances for players and handle their according UI modifier update fields 2024-08-31 20:19:48 +02:00
Shauren
842e1b6c9b Core/Client Builds: Refactor build_info structure to support any client variants
(cherry picked from commit e94558d078)

# Conflicts:
#	sql/base/auth_database.sql
#	sql/updates/auth/cata_classic/2024_08_30_00_auth.sql
2024-08-30 17:54:32 +02:00
Shauren
7627085c1b Core/Client Builds: Move build info out of RealmList class
(cherry picked from commit 82031dc720)
2024-08-30 17:35:13 +02:00
Shauren
6f50030654 Build fix for libstdc++-11
(cherry picked from commit d277be8718)
2024-08-30 17:35:06 +02:00
Shauren
2b8c5ad42d Core/Auth: Refactor client auth key storage to support more future client variants and preserve more information about client version
(cherry picked from commit 8e15952659)
2024-08-30 17:35:01 +02:00
Shauren
cf86c05738 Core/Misc: Remove duplicate helper functions
(cherry picked from commit bffc7ece61)
2024-08-30 17:34:56 +02:00
Naddley
056c9391e6 DB/Player: added required level experience for level 1 to 85 2024-08-29 22:38:16 +02:00
Ovahlord
4192d384eb DB/Player: added required experience to level for level 1 - 12 2024-08-29 05:21:53 +02:00
Motive
519abbd398 Core: Allow macOS arm64 client to connect (#30173)
(cherry picked from commit 6b2d12206c)

# Conflicts:
#	sql/base/auth_database.sql
#	sql/updates/auth/cata_classic/2024_08_28_01_auth.sql
2024-08-29 04:50:49 +02:00
Razmataz
f84033df2b Core/Maps: Decrement map unload timer by correct (accumulated) time diff (#30197)
(cherry picked from commit 13a5d2d42d)
2024-08-29 04:43:04 +02:00
Shauren
a348eb7b01 Core/Mail: Ignore currencies from loot for mails
(cherry picked from commit 2d22978346)
2024-08-27 17:22:47 +02:00
Shauren
ab0d7ac8f3 Core/Players: Fixed spells being unintentionally removed by talent swaps when they are learned from more than one spell (affects balance druid Celesial Alignment and Incarnation)
(cherry picked from commit 2c6ddcce3d)

# Conflicts:
#	src/server/game/Spells/SpellMgr.cpp
2024-08-27 17:22:18 +02:00