2026-02-02 12:24:50 -08:00
|
|
|
# Quick Start Guide
|
|
|
|
|
|
|
|
|
|
## Current Status
|
|
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
Wowee is a native C++ World of Warcraft 3.3.5a client focused on online multiplayer.
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
Implemented today:
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
- SRP6a authentication + world connection
|
|
|
|
|
- Character creation/selection and in-world entry
|
|
|
|
|
- Full 3D rendering pipeline (terrain, water, sky, M2/WMO, particles)
|
2026-02-14 18:05:37 -08:00
|
|
|
- Core gameplay plumbing (movement, combat/spell casting, inventory/equipment, chat)
|
2026-02-11 15:34:42 -08:00
|
|
|
- Transport support (boats/zeppelins) with active ongoing fixes
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-14 18:05:37 -08:00
|
|
|
For a more honest snapshot of gaps and current direction, see `docs/status.md`.
|
|
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
## Build And Run
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
### 1. Clone
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-06 22:39:45 -08:00
|
|
|
```bash
|
docs: fix stale references across 10 documentation files
- CONTRIBUTING.md: C++17 → C++20 (matches CMakeLists.txt)
- TROUBLESHOOTING.md: fix log path (~/.wowee/logs/ → logs/wowee.log)
- docs/authentication.md: remove stale "next milestone" (char enum
and world entry have been working for months)
- docs/srp-implementation.md: update session key status (RC4 encryption
is implemented), fix file reference to actual src/auth/srp.cpp
- docs/packet-framing.md: remove stale "next steps" (realm list is
fully implemented), update status with tested servers
- docs/WARDEN_IMPLEMENTATION.md: fix file list — handler is in
warden_handler.cpp not game_handler.cpp, add warden_memory.hpp/cpp
- docs/WARDEN_QUICK_REFERENCE.md: fix header/source paths (include/
not src/), add warden_handler and warden_memory
- docs/quickstart.md: fix clone command (--recurse-submodules, WoWee
not wowee), remove obsolete manual ImGui clone step, fix log path
- docs/server-setup.md: update version to v1.8.9-preview, date to
2026-03-30, add all supported expansions
- assets/textures/README.md: remove broken doc references
(TURTLEHD_IMPORT.md, TEXTURE_MANIFEST.txt), update integration
status to reflect working PNG override pipeline
2026-03-30 18:33:21 -07:00
|
|
|
git clone --recurse-submodules https://github.com/Kelsidavis/WoWee.git
|
|
|
|
|
cd WoWee
|
2026-02-06 22:39:45 -08:00
|
|
|
```
|
2026-02-02 12:24:50 -08:00
|
|
|
|
docs: fix stale references across 10 documentation files
- CONTRIBUTING.md: C++17 → C++20 (matches CMakeLists.txt)
- TROUBLESHOOTING.md: fix log path (~/.wowee/logs/ → logs/wowee.log)
- docs/authentication.md: remove stale "next milestone" (char enum
and world entry have been working for months)
- docs/srp-implementation.md: update session key status (RC4 encryption
is implemented), fix file reference to actual src/auth/srp.cpp
- docs/packet-framing.md: remove stale "next steps" (realm list is
fully implemented), update status with tested servers
- docs/WARDEN_IMPLEMENTATION.md: fix file list — handler is in
warden_handler.cpp not game_handler.cpp, add warden_memory.hpp/cpp
- docs/WARDEN_QUICK_REFERENCE.md: fix header/source paths (include/
not src/), add warden_handler and warden_memory
- docs/quickstart.md: fix clone command (--recurse-submodules, WoWee
not wowee), remove obsolete manual ImGui clone step, fix log path
- docs/server-setup.md: update version to v1.8.9-preview, date to
2026-03-30, add all supported expansions
- assets/textures/README.md: remove broken doc references
(TURTLEHD_IMPORT.md, TEXTURE_MANIFEST.txt), update integration
status to reflect working PNG override pipeline
2026-03-30 18:33:21 -07:00
|
|
|
### 2. Build
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
```bash
|
|
|
|
|
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
|
|
|
|
|
cmake --build build -j"$(nproc)"
|
|
|
|
|
```
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-14 18:05:37 -08:00
|
|
|
### 4. Provide WoW Data (Extract + Manifest)
|
|
|
|
|
|
|
|
|
|
Wowee loads assets from an extracted loose-file tree indexed by `manifest.json`.
|
|
|
|
|
|
|
|
|
|
If you do not already have an extracted `Data/manifest.json`, extract from your WoW install:
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-14 18:05:37 -08:00
|
|
|
```bash
|
|
|
|
|
# WotLK 3.3.5a example
|
|
|
|
|
./extract_assets.sh /path/to/WoW/Data wotlk
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
By default wowee uses `./Data/`. To override:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
export WOW_DATA_PATH=/path/to/extracted/Data
|
|
|
|
|
```
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
### 5. Run
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
```bash
|
|
|
|
|
./build/bin/wowee
|
|
|
|
|
```
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
## Connect To A Server
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
1. Launch `./build/bin/wowee`
|
|
|
|
|
2. Enter account credentials
|
|
|
|
|
3. Set auth server address (default: `localhost`)
|
|
|
|
|
4. Login, pick realm, pick character, enter world
|
2026-02-06 22:39:45 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
For local AzerothCore setup, see `docs/server-setup.md`.
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
## Useful Controls
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
- `WASD`: Move
|
|
|
|
|
- `Mouse`: Look/orbit camera
|
|
|
|
|
- `Tab`: Cycle targets
|
|
|
|
|
- `1-9,0,-,=`: Action bar slots
|
2026-02-19 15:54:35 -08:00
|
|
|
- `B`: Bags
|
|
|
|
|
- `C`: Character
|
2026-02-11 15:34:42 -08:00
|
|
|
- `P`: Spellbook
|
2026-02-19 15:54:35 -08:00
|
|
|
- `N`: Talents
|
2026-02-11 15:34:42 -08:00
|
|
|
- `L`: Quest log
|
2026-02-19 15:54:35 -08:00
|
|
|
- `M`: World map
|
|
|
|
|
- `O`: Guild roster
|
2026-02-11 15:34:42 -08:00
|
|
|
- `Enter`: Chat
|
2026-02-19 15:54:35 -08:00
|
|
|
- `/`: Chat slash command
|
2026-02-11 15:34:42 -08:00
|
|
|
- `F1`: Performance HUD
|
2026-02-19 15:54:35 -08:00
|
|
|
- `F4`: Toggle shadows
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
## Troubleshooting
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
### Build fails on missing dependencies
|
2026-02-06 22:39:45 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
Use `BUILD_INSTRUCTIONS.md` for distro-specific package lists.
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
### Client cannot connect
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
- Verify auth/world server is running
|
|
|
|
|
- Check host/port settings
|
docs: fix stale references across 10 documentation files
- CONTRIBUTING.md: C++17 → C++20 (matches CMakeLists.txt)
- TROUBLESHOOTING.md: fix log path (~/.wowee/logs/ → logs/wowee.log)
- docs/authentication.md: remove stale "next milestone" (char enum
and world entry have been working for months)
- docs/srp-implementation.md: update session key status (RC4 encryption
is implemented), fix file reference to actual src/auth/srp.cpp
- docs/packet-framing.md: remove stale "next steps" (realm list is
fully implemented), update status with tested servers
- docs/WARDEN_IMPLEMENTATION.md: fix file list — handler is in
warden_handler.cpp not game_handler.cpp, add warden_memory.hpp/cpp
- docs/WARDEN_QUICK_REFERENCE.md: fix header/source paths (include/
not src/), add warden_handler and warden_memory
- docs/quickstart.md: fix clone command (--recurse-submodules, WoWee
not wowee), remove obsolete manual ImGui clone step, fix log path
- docs/server-setup.md: update version to v1.8.9-preview, date to
2026-03-30, add all supported expansions
- assets/textures/README.md: remove broken doc references
(TURTLEHD_IMPORT.md, TEXTURE_MANIFEST.txt), update integration
status to reflect working PNG override pipeline
2026-03-30 18:33:21 -07:00
|
|
|
- Check server logs and client logs in `logs/wowee.log`
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-11 15:34:42 -08:00
|
|
|
### Missing assets (models/textures/terrain)
|
2026-02-02 12:24:50 -08:00
|
|
|
|
2026-02-14 18:05:37 -08:00
|
|
|
- Verify `Data/manifest.json` exists (or re-run `./extract_assets.sh ...`)
|
|
|
|
|
- Or export `WOW_DATA_PATH=/path/to/extracted/Data`
|