jak-project/goal_src/jak3/levels/factory/hover-nav-factoryd.gc
Hat Kid e2e5289788
decomp3: font widescreen and shadow hacks, generic renderer, misc files (#3483)
- `pecker-ingame`
- `des-bbush-tasks`
- `des-burning-bush`
- `des-bush-part`
- `des-bush`
- `mh-centipede`
- `mh-centipede-part`
- `mh-wasp`
- `mh-wasp-part`
- `needle-fish`
- `des-bush-time-chase`
- `timer-path`
- `mission-squad-control-h`
- `mh-bat`
- `hover-nav-factoryd`
- `hover-nav-factoryc`
- `conveyor`
- `fac-part`
- `factory-part`
- `factoryc-mood`
- `factoryc-obs`
- `factoryc-obs2`
- `lfaccar-init`
- `factory-boss-part`
- `factory-boss-scenes`
- `factory-boss-setup`
- `factory-boss-states`
- `factory-mood`
- `factoryc-manager`
- `lfacrm1-mood`
- `lfacrm2-mood`
- `missile-bot`
- `sew-laser-turret`
- `ai-task-h`
- `ash-h`
- `ash-shot`
- `ash-states`
- `ash-task`
- `ash`
- `bot-h`
- `bot-states`
- `bot`
- `ash-oasis-course`
- `oasis-defense`
- `comb-field`
- `comb-mood`
- `comb-obs`
- `comb-part`
- `comb-scenes`
- `comb-sentry`
- `comb-travel`
- `comba-init`
- `combx-scenes`
- `h-sled`
- `destroy-dark-eco`
- `fac-gunturret`
- `fac-robotank-turret`
- `fac-robotank`
- `fac-tower`
- `factory-h`
- `factory-hud`
- `factory-manager`
- `factorya-init`
- `ffight-projectile`
- `ftank-projectile`
- `fturret-projectile`
- `h-warf`
- `warf-projectile`
2024-04-28 08:59:46 -04:00

60 lines
3.7 KiB
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: hover-nav-factoryd.gc
;; name in dgo: hover-nav-factoryd
;; dgos: FACTORYA
;; DECOMP BEGINS
(define *factoryd-adjacency* (new 'static 'nav-network-data
:node-array (new 'static 'boxed-array :type nav-network-info
(new 'static 'nav-network-info
:path-node (new 'static 'nav-network-path-node :parent #f)
:pos (new 'static 'vector :x 1078640.6 :y 2171125.8 :z -394813.44 :w 1.0)
:count 2
:adjacency (new 'static 'inline-array nav-network-adjacency 2
(new 'static 'nav-network-adjacency :index 1 :dist 93962.24)
(new 'static 'nav-network-adjacency :index 3 :dist 110755.84)
)
)
(new 'static 'nav-network-info
:path-node (new 'static 'nav-network-path-node :row-index 1 :parent #f)
:pos (new 'static 'vector :x 1072537.6 :y 2171125.8 :z -488570.88 :w 1.0)
:index 1
:count 2
:adjacency (new 'static 'inline-array nav-network-adjacency 2
(new 'static 'nav-network-adjacency :dist 93962.24)
(new 'static 'nav-network-adjacency :index 2 :dist 110346.24)
)
)
(new 'static 'nav-network-info
:path-node (new 'static 'nav-network-path-node :row-index 2 :parent #f)
:pos (new 'static 'vector :x 962273.25 :y 2171125.8 :z -492912.62 :w 1.0)
:index 2
:count 2
:adjacency (new 'static 'inline-array nav-network-adjacency 2
(new 'static 'nav-network-adjacency :index 1 :dist 110346.24)
(new 'static 'nav-network-adjacency :index 3 :dist 102604.8)
)
)
(new 'static 'nav-network-info
:path-node (new 'static 'nav-network-path-node :row-index 3 :parent #f)
:pos (new 'static 'vector :x 967966.75 :y 2171125.8 :z -390471.7 :w 1.0)
:index 3
:count 2
:adjacency (new 'static 'inline-array nav-network-adjacency 2
(new 'static 'nav-network-adjacency :dist 110755.84)
(new 'static 'nav-network-adjacency :index 2 :dist 102604.8)
)
)
)
:edge-array (new 'static 'boxed-array :type nav-network-edge
(new 'static 'nav-network-edge :end-index 1 :radius 36331.52)
(new 'static 'nav-network-edge :start-index 1 :end-index 2 :radius 38830.08)
(new 'static 'nav-network-edge :start-index 2 :end-index 3 :radius 35184.64)
(new 'static 'nav-network-edge :start-index 3 :radius 39485.44)
)
)
)