mirror of
https://github.com/open-goal/jak-project
synced 2026-06-22 00:56:36 -04:00
f7bd0752f8
* wip * getting stuff set up so we can actually run test cases * better handle block entry stuff * types2 working on gstring * comments * math ref working * up to first stack stuff * stack fixes * bounding box * math stuff is working * float fixes * temp debug for (method 9 profile-array) * stupid stupid bug * debugging * everything is broken * some amount of type stuff works * bitfield * texture bitfields not working * temp * types * more stuff * type check * temp * float related fixes for light and res problems * revisit broken files, fix bugs * more types * vector debug * bug fixes for decompiler crashes in harder functions * update goal_src
40 lines
1.3 KiB
Common Lisp
Vendored
Generated
40 lines
1.3 KiB
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for symbol *external-cam-options*, type external-cam-option
|
|
(define *external-cam-options* (the-as external-cam-option 0))
|
|
|
|
;; definition for symbol *external-cam-mode*, type symbol
|
|
(define *external-cam-mode* #f)
|
|
|
|
;; failed to figure out what this is:
|
|
(when (or (not *camera-look-through-other*) (zero? *camera-look-through-other*))
|
|
(set! *camera-look-through-other* 0)
|
|
0
|
|
)
|
|
|
|
;; definition (perm) for symbol *camera-other-fov*, type bfloat
|
|
(define-perm *camera-other-fov* bfloat (new 'static 'bfloat :data 11650.845))
|
|
|
|
;; definition (perm) for symbol *camera-other-trans*, type vector
|
|
(define-perm *camera-other-trans* vector (vector-reset! (new 'global 'vector)))
|
|
|
|
;; definition (perm) for symbol *camera-other-matrix*, type matrix
|
|
(define-perm *camera-other-matrix* matrix (matrix-identity! (new 'global 'matrix)))
|
|
|
|
;; definition (perm) for symbol *camera-smush-control*, type smush-control
|
|
(define-perm *camera-smush-control* smush-control (set-zero! (new 'global 'smush-control)))
|
|
|
|
;; definition (perm) for symbol *camera-other-root*, type vector
|
|
(define-perm *camera-other-root* vector (vector-reset! (new 'global 'vector)))
|
|
|
|
;; definition for symbol *fix-visible-level-mask*, type int
|
|
(define *fix-visible-level-mask* 6)
|
|
|
|
;; definition for symbol *manual-sample-point*, type symbol
|
|
(define *manual-sample-point* #f)
|
|
|
|
|
|
|
|
|