Skip to content

Commit

Permalink
Use common codegen code from practice-tool-core (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
veeenu committed Mar 8, 2024
1 parent cef08cc commit a89eb80
Show file tree
Hide file tree
Showing 17 changed files with 21,456 additions and 909 deletions.
37 changes: 28 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,10 @@ opt-level = 3
[workspace.dependencies]
hudhook = "0.6.1"
imgui = "0.11.0"
imgui-sys = "0.11.0"
once_cell = "1.19.0"
parking_lot = "0.12.1"
practice-tool-core = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" }
# practice-tool-core = { path = "../../practice-tool-core/" }
practice-tool-tasks = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" }

[workspace.dependencies.windows]
version = "0.54.0"
Expand All @@ -48,3 +47,7 @@ features = [

# [patch.'crates-io']
# hudhook = { path = "../hudhook" }
#
# [patch.'https://github.com/veeenu/practice-tool-core']
# practice-tool-core = { path = "../practice-tool-core" }
# practice-tool-tasks = { path = "../practice-tool-core/tasks" }
34 changes: 17 additions & 17 deletions jdsd_dsiii_practice_tool.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
commands = [
{ savefile_manager = "o" },
{ item_spawner = "u" },
{ savefile_manager = "ctrl+o" },
{ item_spawner = true },
{ character_stats = true },
{ cycle_speed = [1, 3], hotkey = "8" },
{ souls = 10000, hotkey = "9" },
Expand All @@ -13,18 +13,18 @@ commands = [
{ position = "k", save = "rshift+k" },
]},
{ group = "Render flags", commands = [
{ flag = "rend_chr", hotkey = "F4" },
{ flag = "rend_obj", hotkey = "F5" },
{ flag = "rend_map", hotkey = "F6" },
{ flag = "rend_mesh_hi", hotkey = "F7" },
{ flag = "rend_mesh_lo", hotkey = "F8" },
{ flag = "rend_chr", hotkey = "f4" },
{ flag = "rend_obj", hotkey = "f5" },
{ flag = "rend_map", hotkey = "f6" },
{ flag = "rend_mesh_hi", hotkey = "f7" },
{ flag = "rend_mesh_lo", hotkey = "f8" },
# { flag = "all_draw_hit" }, # conflicts with debug_draw
{ flag = "ik_foot_ray", hotkey = "F9" },
{ flag = "debug_sphere_1", hotkey = "F9" },
{ flag = "debug_sphere_2", hotkey = "F9" },
{ flag = "hurtbox", hotkey = "F9" },
{ flag = "debug_draw", hotkey = "F9" },
{ flag = "evt_draw", hotkey = "F10" },
{ flag = "ik_foot_ray", hotkey = "f9" },
{ flag = "debug_sphere_1", hotkey = "f9" },
{ flag = "debug_sphere_2", hotkey = "f9" },
{ flag = "hurtbox", hotkey = "f9" },
{ flag = "debug_draw", hotkey = "f9" },
{ flag = "evt_draw", hotkey = "f10" },
]},
{ flag = "all_no_damage", hotkey = "1" },
{ flag = "inf_stamina", hotkey = "2" },
Expand All @@ -33,10 +33,10 @@ commands = [
{ flag = "deathcam", hotkey = "5" },
{ flag = "no_death", hotkey = "6" },
{ flag = "one_shot", hotkey = "7" },
{ target = "n" },
{ flag = "ai_disable", hotkey = "F1" },
{ flag = "gravity", hotkey = "F2" },
{ flag = "evt_disable", hotkey = "F3" },
{ target = "ctrl+n" },
{ flag = "ai_disable", hotkey = "f1" },
{ flag = "gravity", hotkey = "f2" },
{ flag = "evt_disable", hotkey = "f3" },
{ quitout = "p" }
]

Expand Down
Loading

0 comments on commit a89eb80

Please sign in to comment.