Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ mop.sln
graphify-out
.claude
CLAUDE.md
tools/db2tool/listfile.csv
tools/db2tool/DBDCache/
tools/db2tool/dbfilesclient/
tools/db2tool/caches/
2 changes: 1 addition & 1 deletion docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ make wowsimmop
make simdb

# Generate data from WoW client files
# Requires dotnet 9 to run
# Requires a local WoW install; point Settings.BaseDir in the settings file at it
# Uses tools/database/generator-settings.json for settings
# Also runs make simdb
# This is what you will use most of the time for generation
Expand Down
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,15 @@ CLIENTDATA_OUTPUT := $(shell realpath ./tools/database/wowsims.db)

.PHONY: db
db:
@echo "Running DB2ToSqlite for clientdata"
cd tools/DB2ToSqlite && dotnet run -- -s $(CLIENTDATA_SETTINGS) --output $(CLIENTDATA_OUTPUT)
@echo "Extracting client data"
go run ./tools/db2tool -s $(CLIENTDATA_SETTINGS) --output $(CLIENTDATA_OUTPUT)
@echo "Running DBC generation tool"
go run tools/database/gen_db/*.go -outDir=./assets -gen=db

.PHONY: ptrdb
ptrdb:
@echo "Running DB2ToSqlite for clientdata"
cd tools/DB2ToSqlite && dotnet run -- -s $(CLIENTDATAPTR_SETTINGS) --output $(CLIENTDATA_OUTPUT)
@echo "Extracting client data"
go run ./tools/db2tool -s $(CLIENTDATAPTR_SETTINGS) --output $(CLIENTDATA_OUTPUT)
@echo "Running DBC generation tool"
go run tools/database/gen_db/*.go -outDir=./assets -gen=db

Expand Down
Loading
Loading