mirror of
https://github.com/open-goal/jak-project
synced 2026-06-30 03:49:08 -04:00
58a5440c8a
Makes a bunch of missions mostly playable, including: - `arena-training-1` - `arena-fight-1` - `wascity-chase` - `arena-fight-2` - `arena-fight-3` - `volcano-darkeco` - `desert-hover` - `nest-eggs` - `temple-climb` - `temple-oracle` - `temple-tests` - `desert-beast-battle` - `desert-turtle-training` - `desert-course-race` - `desert-artifact-race1` - `wascity-leaper-race` - `wascity-pre-game` - `sewer-met-hum` - `forest-kill-plants` - `forest-ring-chase` - `temple-defend` - `tower-destroy` - `desert-glide` --- Files: - `ripple` - `waswide-mood` - `sig-rider` - `nst-tasks` - `nst-part` - `nst-gas` - `nst-eggs-h` - `nst-obs` - `nst-mood` - `egg-spider` - `wasdoors-init` - `wasall-tasks` - `wvehicle-race` - `wcar-marauder` - `wcar-marauder-b` - `turret-control` - `was-squad-control` - `turtle-training` - `kleever-rider` - `course-race` - `artifact-race` - `desert-hover` - `desbeast-path-h` - `des-beast` - `desertg-obs` - `desertf-obs` - `desertd-obs` - `desert-dust-storm` - `des-cactus` - `race-hud` - `race-info` - `race-manager` - `tizard` - `flyingsaw` - `hover-training` - `temple-mood` - `temple-obs` - `temple-obs2` - `temple-part` - `temple-scenes` - `templex-mood` - `templex-obs` - `templex-part` - `tomb-baby-spider` - `target-turret-shot` - `target-turret` - `beast-battle-path` - `des-beast-2` - `mh-flyer` - `scorpion-gun` - `hover-enemy-h` - `hover-enemy` - `hover-formation-h` - `hover-formation` - `hover-nav-control-h` - `hover-nav-control` - `flamer-hover` - `hover-nav-templea` - `robo-hover` - `hover-nav-sewb` - `hover-nav-sewg` - `hover-nav-sewj` - `hover-nav-sewl` - `hover-nav-sewo` - `hover-nav-towera` - `tower-mood` - `tower-obs` - `tower-scenes` - `tower-part` - `eco-green-collider` - `forest-bridges` - `forest-kill-plants` - `forest-mood` - `forest-ring-chase` - `forest-tasks` - `forest-part` - `foresta-obs` - `hover-nav-foresta` - `mh-plant` - `dp-bipedal-part` - `dp-bipedal-shot` - `dp-bipedal` - `neo-spawner` - `for-turret` - `for-turret-shot` - `neo-wasp` - `neo-wasp-part` - `volcanox-scenes` - `volcanox-mood` - `volcano-scenes` - `volcano-mood` - `volcano-obs` - `volcano-obs2` - `chain-physics` - `rigid-body-plat` - `volcano-part` - `flamer-lava` - `flitter` - `spiky-frog` - `flut-wild` - `target-indax` - `target-indax-hang` - `mantis` - `volcanox-obs` - `spyder` - `wcar-faccar` - `mhcity-obs2` - `mhcity-part` - `mhcity-obs` - `dm-mine-spider` - `rapid-gunner` - `stadium-mood` - `stadium-scenes` - `stadiuma-mood` - `stadiuma-part` - `kanga-lizard` - `marauder` - `arena-scenes` - `wasstada-mood` - `wasstada-obs` - `wasstada-part` - `wasstadb-obs` - `wasstadc-obs` - `dm-flyer` - `maker-part` - `maker-projectile` - `skeet-part` - `wascity-turret` - `wasgun-h` - `wasgun-hud` - `wasgun-manager` - `nav-graph-h` - `traffic-engine-h` - `waswide-init` - `cty-borrow-manager-h` - `cty-borrow-manager` - `desert-part` - `height-map-h` - `height-map` - `traffic-height-map` - `vehicle-control` - `hvehicle-h` - `hvehicle` - `hvehicle-effects` - `hvehicle-physics` - `hvehicle-util` - `glider-h` - `glider-hud` - `glider-manager` - `glider-ring` - `glider-ring-part` - `h-glider` - `hanga-init` - `was-pre-game` - `was-leaper-race` - `flut-racer` - `desert-scenes` - `desert-lizard-h` - `desert-lizard-task` - `desert-lizard` - `throne-scenes` - `waspal-mood` - `waspala-obs` - `waspala-part` - `deswalk-obs` - `deswalk-part` - `terraformer-drone` - `terraformer-head` - `terraformer-part` - `terraformer-setup`
114 lines
3.6 KiB
Common Lisp
Vendored
Generated
114 lines
3.6 KiB
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition of type process-focusable
|
|
(deftype process-focusable (process-drawable)
|
|
((self process-focusable :override)
|
|
(root collide-shape :override)
|
|
(focus-status focus-status)
|
|
)
|
|
(:methods
|
|
(process-mask->search-info-flag (_type_) search-info-flag)
|
|
(get-trans (_type_ int) vector)
|
|
(get-quat (_type_ int) quaternion)
|
|
(get-transv (_type_) vector)
|
|
(time-to-apex-or-ground (_type_ int) int)
|
|
(get-water-height (_type_) meters)
|
|
(get-notice-time (_type_) time-frame)
|
|
(get-inv-mass (_type_) float)
|
|
)
|
|
)
|
|
|
|
;; definition for method 3 of type process-focusable
|
|
(defmethod inspect ((this process-focusable))
|
|
(when (not this)
|
|
(set! this this)
|
|
(goto cfg-4)
|
|
)
|
|
(let ((t9-0 (method-of-type process-drawable inspect)))
|
|
(t9-0 this)
|
|
)
|
|
(format #t "~2Tfocus-status: ~D~%" (-> this focus-status))
|
|
(label cfg-4)
|
|
this
|
|
)
|
|
|
|
;; definition for method 20 of type process-focusable
|
|
;; WARN: Return type mismatch int vs search-info-flag.
|
|
(defmethod process-mask->search-info-flag ((this process-focusable))
|
|
(let ((search-flag (search-info-flag)))
|
|
(let ((mask (-> this mask)))
|
|
(if (logtest? (process-mask crate) mask)
|
|
(set! search-flag (the-as search-info-flag (logior (the-as int search-flag) (search-info-flag crate))))
|
|
)
|
|
(if (logtest? (process-mask guard) mask)
|
|
(set! search-flag (the-as search-info-flag (logior (the-as int search-flag) (search-info-flag guard))))
|
|
)
|
|
(if (logtest? (process-mask enemy) mask)
|
|
(set! search-flag (the-as search-info-flag (logior (the-as int search-flag) (search-info-flag enemy))))
|
|
)
|
|
)
|
|
(the-as search-info-flag search-flag)
|
|
)
|
|
)
|
|
|
|
;; definition for method 21 of type process-focusable
|
|
;; WARN: Return type mismatch structure vs vector.
|
|
(defmethod get-trans ((this process-focusable) (mode int))
|
|
"Get the `trans` for this process."
|
|
(let ((cshape (-> this root)))
|
|
(the-as vector (cond
|
|
((zero? mode)
|
|
(-> cshape trans)
|
|
)
|
|
((and (= mode 1) (type? cshape collide-shape-moving))
|
|
(-> (the-as collide-shape-moving cshape) gspot-pos)
|
|
)
|
|
((and (or (= mode 2) (= mode 3) (= mode 10)) (type? cshape collide-shape))
|
|
(-> (the-as collide-shape-moving cshape) root-prim prim-core)
|
|
)
|
|
(else
|
|
(-> cshape trans)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
;; definition for method 23 of type process-focusable
|
|
(defmethod get-transv ((this process-focusable))
|
|
"Get the `transv` for this process."
|
|
(-> this root transv)
|
|
)
|
|
|
|
;; definition for method 22 of type process-focusable
|
|
(defmethod get-quat ((this process-focusable) (arg0 int))
|
|
"Get the quaternion for this process."
|
|
(-> this root quat)
|
|
)
|
|
|
|
;; definition for method 24 of type process-focusable
|
|
(defmethod time-to-apex-or-ground ((this process-focusable) (arg0 int))
|
|
0
|
|
)
|
|
|
|
;; definition for method 25 of type process-focusable
|
|
;; WARN: Return type mismatch int vs meters.
|
|
(defmethod get-water-height ((this process-focusable))
|
|
(the-as meters 0)
|
|
)
|
|
|
|
;; definition for method 27 of type process-focusable
|
|
(defmethod get-inv-mass ((this process-focusable))
|
|
0.0
|
|
)
|
|
|
|
;; definition for method 26 of type process-focusable
|
|
;; WARN: Return type mismatch int vs time-frame.
|
|
(defmethod get-notice-time ((this process-focusable))
|
|
(the-as time-frame 0)
|
|
)
|
|
|
|
;; failed to figure out what this is:
|
|
0
|