mirror of
https://github.com/open-goal/jak-project
synced 2026-09-06 03:08:29 -04:00
4c788b7f50
* decomp: `target-h` * decomp: `shadow-h` * decomp: Add reference / source files * Use `define-perm` in goal_src file
58 lines
2.3 KiB
Common Lisp
58 lines
2.3 KiB
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: target-h.gc
|
|
;; name in dgo: target-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; definition of type target
|
|
(deftype target (process-drawable)
|
|
((control basic :offset 112)
|
|
(skel2 basic :offset-assert 176)
|
|
(racer basic :offset-assert 180)
|
|
(game basic :offset-assert 184)
|
|
(neck basic :offset-assert 188)
|
|
(state-hook-time uint64 :offset-assert 192)
|
|
(state-hook basic :offset-assert 200)
|
|
(cam-user-mode basic :offset-assert 204)
|
|
(sidekick uint32 :offset-assert 208)
|
|
(manipy uint32 :offset-assert 212)
|
|
(attack-info attack-info :inline :offset-assert 224)
|
|
(attack-info-rec attack-info :inline :offset-assert 336)
|
|
(anim-seed uint64 :offset-assert 440)
|
|
(alt-cam-pos vector :inline :offset-assert 448)
|
|
(snowball basic :offset-assert 464)
|
|
(tube basic :offset-assert 468)
|
|
(flut basic :offset-assert 472)
|
|
(current-level basic :offset-assert 476)
|
|
(saved-pos transformq :inline :offset-assert 480)
|
|
(saved-owner uint64 :offset-assert 528)
|
|
(alt-neck-pos vector :inline :offset-assert 544)
|
|
(fp-hud uint64 :offset-assert 560)
|
|
(no-load-wait uint64 :offset-assert 568)
|
|
(no-look-around-wait uint64 :offset-assert 576)
|
|
)
|
|
:heap-base #x1e0
|
|
:method-count-assert 21
|
|
:size-assert #x248
|
|
:flag-assert #x1501e00248
|
|
(:methods
|
|
(dummy-20 () none 20)
|
|
)
|
|
)
|
|
|
|
;; definition of type sidekick
|
|
(deftype sidekick (process-drawable)
|
|
((control basic :offset 112)
|
|
(anim-seed uint64 :offset 192)
|
|
(shadow-in-movie? basic :offset-assert 200)
|
|
)
|
|
:heap-base #x60
|
|
:method-count-assert 20
|
|
:size-assert #xcc
|
|
:flag-assert #x14006000cc
|
|
)
|
|
|
|
(define-perm *target* target #f)
|
|
(define-perm *sidekick* sidekick #f)
|