Kelsidavis-WoWee/src/ui
Kelsi e9ce062112 fix: restore correct CharSections.dbc field indices for character textures
PR #19 (572bb4ef) swapped CharSections.dbc field indices, placing
Texture1-3 at fields 4-6 and VariationIndex/ColorIndex at 8-9. Binary
analysis of the actual DBC files (Classic, TBC, Turtle — all identical
layout, no WotLK-specific override) confirms the correct order is:

  Field 4 = VariationIndex
  Field 5 = ColorIndex
  Field 6 = Texture1 (string)
  Field 7 = Texture2 (string)
  Field 8 = Texture3 (string)
  Field 9 = Flags

With the wrong indices, VariationIndex/ColorIndex reads returned string
offsets (garbage values that never matched), so all CharSections lookups
failed silently — producing white untextured character models at the
login screen and in-world.

Fixes all 4 expansion JSON layouts, hardcoded fallbacks in
character_preview.cpp, application.cpp, and character_create_screen.cpp.
Also handles the single-layer edge case (body skin only, no face/underwear)
by loading the texture directly instead of skipping compositing.
2026-03-22 15:22:25 -07:00
..
auth_screen.cpp feat: enable login screen background music 2026-03-18 10:08:44 -07:00
character_create_screen.cpp fix: restore correct CharSections.dbc field indices for character textures 2026-03-22 15:22:25 -07:00
character_screen.cpp feat: color class names by WoW class color in character selection screen 2026-03-13 08:57:44 -07:00
game_screen.cpp feat: show grey focus frame name for tapped mobs 2026-03-21 08:42:56 -07:00
inventory_screen.cpp fix: add proficiency warning to vendor/loot item tooltips 2026-03-20 06:07:38 -07:00
keybinding_manager.cpp fix: add missing TOGGLE_SKILLS to keybinding_manager (fixes CI build failure) 2026-03-17 21:08:02 -07:00
quest_log_screen.cpp fix: add $C (class) and $R (race) quest text placeholders 2026-03-18 06:49:37 -07:00
realm_screen.cpp Propagate realm-reported build to world handshake for vanilla compatibility 2026-02-27 05:05:44 -08:00
spellbook_screen.cpp feat: parse SMSG_SET_FLAT/PCT_SPELL_MODIFIER and apply talent modifiers to spell tooltips 2026-03-12 23:59:38 -07:00
talent_screen.cpp feat: add confirmation dialog before spending talent points 2026-03-18 11:23:35 -07:00
ui_manager.cpp Add configurable MSAA anti-aliasing, update auth screen and terrain shader 2026-02-22 02:59:24 -08:00