mirror of
https://github.com/open-goal/jak-project
synced 2026-07-10 15:14:15 -04:00
cd68cb671e
Major change to how `deftype` shows up in our code: - the decompiler will no longer emit the `offset-assert`, `method-count-assert`, `size-assert` and `flag-assert` parameters. There are extremely few cases where having this in the decompiled code is helpful, as the types there come from `all-types` which already has those parameters. This also doesn't break type consistency because: - the asserts aren't compared. - the first step of the test uses `all-types`, which has the asserts, which will throw an error if they're bad. - the decompiler won't emit the `heap-base` parameter unless necessary now. - the decompiler will try its hardest to turn a fixed-offset field into an `overlay-at` field. It falls back to the old offset if all else fails. - `overlay-at` now supports field "dereferencing" to specify the offset that's within a field that's a structure, e.g.: ```lisp (deftype foobar (structure) ((vec vector :inline) (flags int32 :overlay-at (-> vec w)) ) ) ``` in this structure, the offset of `flags` will be 12 because that is the final offset of `vec`'s `w` field within this structure. - **removed ID from all method declarations.** IDs are only ever automatically assigned now. Fixes #3068. - added an `:overlay` parameter to method declarations, in order to declare a new method that goes on top of a previously-defined method. Syntax is `:overlay <method-name>`. Please do not ever use this. - added `state-methods` list parameter. This lets you quickly specify a list of states to be put in the method table. Same syntax as the `states` list parameter. The decompiler will try to put as many states in this as it can without messing with the method ID order. Also changes `defmethod` to make the first type definition (before the arguments) optional. The type can now be inferred from the first argument. Fixes #3093. --------- Co-authored-by: Hat Kid <6624576+Hat-Kid@users.noreply.github.com>
194 lines
6.7 KiB
Common Lisp
Vendored
Generated
194 lines
6.7 KiB
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition of type touching-prim
|
|
(deftype touching-prim (structure)
|
|
((cprim collide-shape-prim)
|
|
(has-tri? symbol)
|
|
(tri collide-tri-result :inline)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type touching-prim
|
|
(defmethod inspect ((this touching-prim))
|
|
(format #t "[~8x] ~A~%" this 'touching-prim)
|
|
(format #t "~Tcprim: ~A~%" (-> this cprim))
|
|
(format #t "~Thas-tri?: ~A~%" (-> this has-tri?))
|
|
(format #t "~Ttri: #<collide-tri-result @ #x~X>~%" (-> this tri))
|
|
this
|
|
)
|
|
|
|
;; definition of type touching-prims-entry
|
|
(deftype touching-prims-entry (structure)
|
|
((next touching-prims-entry)
|
|
(prev touching-prims-entry)
|
|
(allocated? symbol)
|
|
(u float)
|
|
(prim1 touching-prim :inline)
|
|
(prim2 touching-prim :inline)
|
|
)
|
|
(:methods
|
|
(get-touched-prim (_type_ trsqv touching-shapes-entry) collide-shape-prim)
|
|
(touching-prims-entry-method-10 () none)
|
|
(get-middle-of-bsphere-overlap (_type_ vector) vector)
|
|
(get-touched-tri (_type_ collide-shape touching-shapes-entry) collide-tri-result)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type touching-prims-entry
|
|
(defmethod inspect ((this touching-prims-entry))
|
|
(format #t "[~8x] ~A~%" this 'touching-prims-entry)
|
|
(format #t "~Tnext: #<touching-prims-entry @ #x~X>~%" (-> this next))
|
|
(format #t "~Tprev: #<touching-prims-entry @ #x~X>~%" (-> this prev))
|
|
(format #t "~Tallocated?: ~A~%" (-> this allocated?))
|
|
(format #t "~Tu: ~f~%" (-> this u))
|
|
(format #t "~Tprim1: #<touching-prim @ #x~X>~%" (-> this prim1))
|
|
(format #t "~Tprim2: #<touching-prim @ #x~X>~%" (-> this prim2))
|
|
this
|
|
)
|
|
|
|
;; definition of type touching-prims-entry-pool
|
|
(deftype touching-prims-entry-pool (structure)
|
|
((head touching-prims-entry)
|
|
(nodes touching-prims-entry 64 :inline)
|
|
)
|
|
(:methods
|
|
(new (symbol type) _type_)
|
|
(alloc-node (_type_) touching-prims-entry)
|
|
(get-free-node-count (_type_) int)
|
|
(init-list! (_type_) none)
|
|
(free-node (_type_ touching-prims-entry) touching-prims-entry)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type touching-prims-entry-pool
|
|
(defmethod inspect ((this touching-prims-entry-pool))
|
|
(format #t "[~8x] ~A~%" this 'touching-prims-entry-pool)
|
|
(format #t "~Thead: #<touching-prims-entry @ #x~X>~%" (-> this head))
|
|
(format #t "~Tnodes[64] @ #x~X~%" (-> this nodes))
|
|
this
|
|
)
|
|
|
|
;; definition for method 11 of type touching-prims-entry-pool
|
|
;; INFO: Return type mismatch symbol vs none.
|
|
(defmethod init-list! ((this touching-prims-entry-pool))
|
|
(let ((prev (the-as touching-prims-entry #f)))
|
|
(let ((current (the-as touching-prims-entry (-> this nodes))))
|
|
(set! (-> this head) current)
|
|
(countdown (a0-1 64)
|
|
(set! (-> current prev) prev)
|
|
(let ((next (&+ current 240)))
|
|
(set! (-> current next) (the-as touching-prims-entry next))
|
|
(set! (-> current allocated?) #f)
|
|
(set! prev current)
|
|
(set! current (the-as touching-prims-entry next))
|
|
)
|
|
)
|
|
)
|
|
(set! (-> prev next) #f)
|
|
)
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 0 of type touching-prims-entry-pool
|
|
;; INFO: Return type mismatch structure vs touching-prims-entry-pool.
|
|
(defmethod new touching-prims-entry-pool ((allocation symbol) (type-to-make type))
|
|
(let ((t9-0 (method-of-type structure new))
|
|
(v1-1 type-to-make)
|
|
)
|
|
(-> type-to-make size)
|
|
(let ((gp-0 (t9-0 allocation v1-1)))
|
|
((method-of-type touching-prims-entry-pool init-list!) (the-as touching-prims-entry-pool gp-0))
|
|
(the-as touching-prims-entry-pool gp-0)
|
|
)
|
|
)
|
|
)
|
|
|
|
;; definition of type touching-shapes-entry
|
|
(deftype touching-shapes-entry (structure)
|
|
((cshape1 collide-shape)
|
|
(cshape2 collide-shape)
|
|
(resolve-u int8)
|
|
(head touching-prims-entry)
|
|
)
|
|
:allow-misaligned
|
|
(:methods
|
|
(touching-shapes-entry-method-9 (_type_) none)
|
|
(get-touched-shape (_type_ collide-shape) collide-shape)
|
|
(touching-shapes-entry-method-11 () none)
|
|
(prims-touching? (_type_ collide-shape-moving uint) touching-prims-entry)
|
|
(prims-touching-action? (_type_ collide-shape collide-action collide-action) touching-prims-entry)
|
|
(touching-shapes-entry-method-14 () none)
|
|
(free-touching-prims-list (_type_) symbol)
|
|
(get-head (_type_) touching-prims-entry)
|
|
(get-next (_type_ touching-prims-entry) touching-prims-entry)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type touching-shapes-entry
|
|
(defmethod inspect ((this touching-shapes-entry))
|
|
(format #t "[~8x] ~A~%" this 'touching-shapes-entry)
|
|
(format #t "~Tcshape1: ~A~%" (-> this cshape1))
|
|
(format #t "~Tcshape2: ~A~%" (-> this cshape2))
|
|
(format #t "~Tresolve-u: ~D~%" (-> this resolve-u))
|
|
(format #t "~Thead: #<touching-prims-entry @ #x~X>~%" (-> this head))
|
|
this
|
|
)
|
|
|
|
;; definition of type touching-list
|
|
(deftype touching-list (structure)
|
|
((num-touching-shapes int32)
|
|
(resolve-u int8)
|
|
(touching-shapes touching-shapes-entry 32 :inline)
|
|
)
|
|
(:methods
|
|
(new (symbol type) _type_)
|
|
(add-touching-prims (_type_ collide-shape-prim collide-shape-prim float collide-tri-result collide-tri-result) none)
|
|
(touching-list-method-10 () none)
|
|
(update-from-step-size (_type_ float) none)
|
|
(send-events-for-touching-shapes (_type_) none)
|
|
(get-shapes-entry (_type_ collide-shape collide-shape) touching-shapes-entry)
|
|
(free-all-prim-nodes (_type_) none)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type touching-list
|
|
(defmethod inspect ((this touching-list))
|
|
(format #t "[~8x] ~A~%" this 'touching-list)
|
|
(format #t "~Tnum-touching-shapes: ~D~%" (-> this num-touching-shapes))
|
|
(format #t "~Tresolve-u: ~D~%" (-> this resolve-u))
|
|
(format #t "~Ttouching-shapes[32] @ #x~X~%" (-> this touching-shapes))
|
|
this
|
|
)
|
|
|
|
;; definition for method 0 of type touching-list
|
|
;; INFO: Return type mismatch structure vs touching-list.
|
|
(defmethod new touching-list ((allocation symbol) (type-to-make type))
|
|
(let ((t9-0 (method-of-type structure new))
|
|
(v1-1 type-to-make)
|
|
)
|
|
(-> type-to-make size)
|
|
(let ((this (the-as touching-list (t9-0 allocation v1-1))))
|
|
(set! (-> this num-touching-shapes) 0)
|
|
(set! (-> this resolve-u) 0)
|
|
this
|
|
)
|
|
)
|
|
)
|
|
|
|
;; definition for method 16 of type touching-shapes-entry
|
|
(defmethod get-head ((this touching-shapes-entry))
|
|
(-> this head)
|
|
)
|
|
|
|
;; definition for method 17 of type touching-shapes-entry
|
|
(defmethod get-next ((this touching-shapes-entry) (arg0 touching-prims-entry))
|
|
(-> arg0 next)
|
|
)
|
|
|
|
;; definition (perm) for symbol *touching-prims-entry-pool*, type touching-prims-entry-pool
|
|
(define-perm *touching-prims-entry-pool* touching-prims-entry-pool (new 'global 'touching-prims-entry-pool))
|
|
|
|
;; definition (perm) for symbol *touching-list*, type touching-list
|
|
(define-perm *touching-list* touching-list (new 'global 'touching-list))
|