Files
jak-project/test/decompiler/reference/jakx/engine/ps2/memcard-h_REF.gc
T
2026-06-15 09:56:10 -04:00

280 lines
8.6 KiB
Common Lisp
Vendored
Generated

;;-*-Lisp-*-
(in-package goal)
;; definition of type mc-handle
(deftype mc-handle (int32)
()
)
;; definition of type mc-file-info
(deftype mc-file-info (structure)
"Data stored in a save file."
((present int32)
(blind-data float 24)
(blind-data-int8 int8 96 :overlay-at (-> blind-data 0))
(level-index int32 :overlay-at (-> blind-data 0))
(gem-count float :overlay-at (-> blind-data 1))
(skill-count float :overlay-at (-> blind-data 2))
(completion-percentage float :overlay-at (-> blind-data 3))
(minute uint8 :overlay-at (-> blind-data 5))
(hour uint8 :overlay-at (-> blind-data-int8 21))
(week uint8 :overlay-at (-> blind-data-int8 22))
(day uint8 :overlay-at (-> blind-data-int8 23))
(month uint8 :overlay-at (-> blind-data 6))
(year uint8 :overlay-at (-> blind-data-int8 25))
(language uint8 :overlay-at (-> blind-data-int8 26))
(game-time0 uint32 :overlay-at (-> blind-data 8))
(game-time1 uint32 :overlay-at (-> blind-data 9))
(purchase-secrets uint32 :overlay-at (-> blind-data 10))
(secrets uint32 :overlay-at (-> blind-data 12))
(features uint32 :overlay-at (-> blind-data 14))
(name uint8 16 :overlay-at (-> blind-data 16))
)
:pack-me
)
;; definition for method 3 of type mc-file-info
(defmethod inspect ((this mc-file-info))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'mc-file-info)
(format #t "~1Tpresent: ~D~%" (-> this present))
(format #t "~1Tblind-data[24] @ #x~X~%" (-> this blind-data))
(format #t "~1Tblind-data-int8[96] @ #x~X~%" (-> this blind-data))
(format #t "~1Tlevel-index: ~D~%" (-> this level-index))
(format #t "~1Tgem-count: ~f~%" (-> this gem-count))
(format #t "~1Tskill-count: ~f~%" (-> this skill-count))
(format #t "~1Tcompletion-percentage: ~f~%" (-> this completion-percentage))
(format #t "~1Tminute: #x~X~%" (-> this minute))
(format #t "~1Thour: #x~X~%" (-> this hour))
(format #t "~1Tweek: #x~X~%" (-> this week))
(format #t "~1Tday: #x~X~%" (-> this day))
(format #t "~1Tmonth: #x~X~%" (-> this month))
(format #t "~1Tyear: #x~X~%" (-> this year))
(format #t "~1Tlanguage: ~D~%" (-> this language))
(format #t "~1Tgame-time0: ~D~%" (-> this game-time0))
(format #t "~1Tgame-time1: ~D~%" (-> this game-time1))
(format #t "~1Tpurchase-secrets: #x~X~%" (&-> this purchase-secrets))
(format #t "~1Tsecrets: #x~X~%" (&-> this secrets))
(format #t "~1Tfeatures: #x~X~%" (&-> this features))
(format #t "~1Tname[16] @ #x~X~%" (-> this name))
(label cfg-4)
this
)
;; definition of type mc-slot-info
(deftype mc-slot-info (structure)
"Data about a memory card slot."
((handle mc-handle)
(known int32)
(formatted int32)
(inited int32)
(last-file int32)
(mem-required int32)
(mem-actual int32)
(file mc-file-info 4 :inline)
)
)
;; definition for method 3 of type mc-slot-info
(defmethod inspect ((this mc-slot-info))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'mc-slot-info)
(format #t "~1Thandle: ~D~%" (-> this handle))
(format #t "~1Tknown: ~D~%" (-> this known))
(format #t "~1Tformatted: ~D~%" (-> this formatted))
(format #t "~1Tinited: ~D~%" (-> this inited))
(format #t "~1Tlast-file: ~D~%" (-> this last-file))
(format #t "~1Tmem-required: ~D~%" (-> this mem-required))
(format #t "~1Tmem-actual: ~D~%" (-> this mem-actual))
(format #t "~1Tfile[4] @ #x~X~%" (-> this file))
(label cfg-4)
this
)
;; definition for function mc-sync
(defun mc-sync ()
(let ((v0-0 0))
(while (zero? v0-0)
(mc-run)
(set! v0-0 (the-as int (mc-check-result)))
)
v0-0
)
)
;; definition for function show-mc-info
;; WARN: Return type mismatch int vs none.
(defun show-mc-info ((arg0 dma-buffer))
(let ((s5-0 (new 'stack-no-clear 'mc-slot-info)))
(dotimes (s4-0 2)
(mc-get-slot-info s4-0 s5-0)
(cond
((zero? (-> s5-0 known))
(format (clear *temp-string*) "SLOT ~D: EXAMINING SLOT~%" s4-0)
*temp-string*
)
((zero? (-> s5-0 handle))
(format (clear *temp-string*) "SLOT ~D: NO CARD~%" s4-0)
*temp-string*
)
((zero? (-> s5-0 formatted))
(format (clear *temp-string*) "SLOT ~D: CARD [~D] : NOT FORMATTED~%" s4-0 (-> s5-0 handle))
*temp-string*
)
((zero? (-> s5-0 inited))
(format
(clear *temp-string*)
"SLOT ~D: CARD [~D] : NO FILE [~D/~D]~%"
s4-0
(-> s5-0 handle)
(-> s5-0 mem-required)
(-> s5-0 mem-actual)
)
*temp-string*
)
(else
(format (clear *temp-string*) "SLOT ~D: CARD [~D] : " s4-0 (-> s5-0 handle))
*temp-string*
(format
*temp-string*
"SAVES ~D ~D ~D ~D : LAST ~D~%"
(-> s5-0 file 0 present)
(-> s5-0 file 1 present)
(-> s5-0 file 2 present)
(-> s5-0 file 3 present)
(-> s5-0 last-file)
)
)
)
(draw-string-xy *temp-string* arg0 32 (+ (* 12 s4-0) 8) (font-color red) (font-flags shadow))
)
)
0
(none)
)
;; definition of type stored-network-account
(deftype stored-network-account (structure)
((name uint8 64)
(password uint8 64)
)
:pack-me
(:methods
(stored-network-account-method-9 () none)
(stored-network-account-method-10 () none)
)
)
;; definition for method 3 of type stored-network-account
(defmethod inspect ((this stored-network-account))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'stored-network-account)
(format #t "~1Tname[64] @ #x~X~%" (-> this name))
(format #t "~1Tpassword[64] @ #x~X~%" (-> this password))
(label cfg-4)
this
)
;; definition of type stored-network-accounts
(deftype stored-network-accounts (structure)
((accounts stored-network-account 4 :inline)
(default-idx int8)
(ct int8)
)
:allow-misaligned
(:methods
(stored-network-accounts-method-9 () none)
)
)
;; definition for method 3 of type stored-network-accounts
(defmethod inspect ((this stored-network-accounts))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'stored-network-accounts)
(format #t "~1Taccounts[4] @ #x~X~%" (-> this accounts))
(format #t "~1Tdefault-idx: ~D~%" (-> this default-idx))
(format #t "~1Tct: ~D~%" (-> this ct))
(label cfg-4)
this
)
;; definition of type mc-common-data
(deftype mc-common-data (structure)
((magic uint32)
(crc uint32)
(version uint32)
(data uint8 1012)
(net-accounts stored-network-accounts :inline :overlay-at (-> data 0))
)
)
;; definition for method 3 of type mc-common-data
(defmethod inspect ((this mc-common-data))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'mc-common-data)
(format #t "~1Tmagic: ~D~%" (-> this magic))
(format #t "~1Tcrc: ~D~%" (-> this crc))
(format #t "~1Tversion: ~D~%" (-> this version))
(format #t "~1Tdata[1012] @ #x~X~%" (-> this data))
(format #t "~1Tnet-accounts: #<stored-network-accounts @ #x~X>~%" (-> this data))
(label cfg-4)
this
)
;; definition of type mc-patch-data
(deftype mc-patch-data (structure)
((magic uint32)
(crc uint32)
(version uint32)
(size uint32)
(data uint8 524272)
)
)
;; definition for method 3 of type mc-patch-data
(defmethod inspect ((this mc-patch-data))
(when (not this)
(set! this this)
(goto cfg-4)
)
(format #t "[~8x] ~A~%" this 'mc-patch-data)
(format #t "~1Tmagic: ~D~%" (-> this magic))
(format #t "~1Tcrc: ~D~%" (-> this crc))
(format #t "~1Tversion: ~D~%" (-> this version))
(format #t "~1Tsize: ~D~%" (-> this size))
(format #t "~1Tdata[524272] @ #x~X~%" (-> this data))
(label cfg-4)
this
)
;; definition for symbol *mc-common-data*, type mc-common-data
(define *mc-common-data* (new 'static 'mc-common-data))
;; definition for symbol *mc-patch-data*, type mc-patch-data
(define *mc-patch-data* (the-as mc-patch-data #f))
;; definition for symbol *mc-last-result*, type mc-status-code
(define *mc-last-result* (mc-status-code ok))
;; failed to figure out what this is:
0