mirror of
https://github.com/open-goal/jak-project
synced 2026-08-07 02:06:59 -04:00
3ee2b4423c
This PR does a few cleanups: - improve method names/comments/flags for `enemy.gc` and a few other files - fix `new-stack-matrix0` not working for jak 3 - add `matrix-copy!` detection for jak 3 - add `vector-copy!` detection --------- Co-authored-by: water111 <awaterford1111445@gmail.com>
25 lines
500 B
Common Lisp
25 lines
500 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: factoryb-init.gc
|
|
;; name in dgo: factoryb-init
|
|
;; dgos: FACB
|
|
|
|
(define-extern factory-manager-start (function level none))
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(defun factoryb-activate ((arg0 level))
|
|
(cond
|
|
((= (level-status? *level* 'lfactory #f) 'active)
|
|
(format 0 "factoryb-activate~%")
|
|
(factory-manager-start arg0)
|
|
)
|
|
(else
|
|
(format 0 "WARNING: factoryb is starting up without lfactory, there will be no manager.")
|
|
)
|
|
)
|
|
0
|
|
(none)
|
|
)
|