mirror of
https://github.com/open-goal/jak-project
synced 2026-05-30 08:56:59 -04:00
63 lines
2.2 KiB
Common Lisp
Vendored
63 lines
2.2 KiB
Common Lisp
Vendored
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition of type align-control
|
|
(deftype align-control (basic)
|
|
((flags uint32 :offset-assert 4)
|
|
(process process-drawable :offset-assert 8)
|
|
(frame-group art-joint-anim :offset-assert 12)
|
|
(frame-num float :offset-assert 16)
|
|
(matrix matrix 2 :inline :offset-assert 32)
|
|
(transform transform 2 :inline :offset-assert 160)
|
|
(delta transformq :inline :offset-assert 256)
|
|
(last-speed meters :offset-assert 304)
|
|
(align transformq :inline :offset 160)
|
|
)
|
|
:method-count-assert 14
|
|
:size-assert #x134
|
|
:flag-assert #xe00000134
|
|
(:methods
|
|
(new (symbol type process) _type_ :behavior process-drawable 0)
|
|
(TODO-RENAME-9 (_type_) transformq 9)
|
|
(TODO-RENAME-10 (_type_ int float float float) trsqv 10)
|
|
(TODO-RENAME-11 (_type_ int vector int float float) none 11)
|
|
(first-transform (_type_) transform 12)
|
|
(snd-transform (_type_) transform 13)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type align-control
|
|
(defmethod inspect align-control ((obj align-control))
|
|
(format #t "[~8x] ~A~%" obj (-> obj type))
|
|
(format #t "~Tflags: #x~X~%" (-> obj flags))
|
|
(format #t "~Tprocess: ~A~%" (-> obj process))
|
|
(format #t "~Tframe-group: ~A~%" (-> obj frame-group))
|
|
(format #t "~Tframe-num: ~f~%" (-> obj frame-num))
|
|
(format #t "~Tmatrix[2] @ #x~X~%" (-> obj matrix))
|
|
(format #t "~Ttransform[2] @ #x~X~%" (-> obj transform))
|
|
(format #t "~Tdelta: #<transformq @ #x~X>~%" (-> obj delta))
|
|
(format #t "~Tlast-speed: (meters ~m)~%" (-> obj last-speed))
|
|
(format #t "~Talign: #<transformq @ #x~X>~%" (-> obj transform))
|
|
obj
|
|
)
|
|
|
|
;; definition for method 0 of type align-control
|
|
;; INFO: Return type mismatch object vs align-control.
|
|
(defmethod
|
|
new
|
|
align-control
|
|
((allocation symbol) (type-to-make type) (arg0 process))
|
|
(let
|
|
((obj
|
|
(object-new allocation type-to-make (the-as int (-> type-to-make size)))
|
|
)
|
|
)
|
|
(when (zero? obj)
|
|
(go process-drawable-art-error "memory")
|
|
(return (the-as align-control 0))
|
|
)
|
|
(set! (-> obj process) (the-as process-drawable arg0))
|
|
obj
|
|
)
|
|
)
|