Files
jak-project/goal_src/jak2/engine/ps2/rpc-h.gc
T

195 lines
5.3 KiB
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: rpc-h.gc
;; name in dgo: rpc-h
;; dgos: ENGINE, GAME
(defun-extern sound-buffer-dump int)
;; DECOMP BEGINS
(deftype rpc-buffer (basic)
((elt-size uint32)
(elt-count uint32)
(elt-used uint32)
(busy basic)
(base pointer)
(data uint8 :dynamic :offset 32)
)
(:methods
(new (symbol type uint uint) rpc-buffer)
)
)
(defmethod new rpc-buffer ((allocation symbol) (type-to-make type) (arg0 uint) (arg1 uint))
(let* ((a2-2 (+ (-> type-to-make size) 63 (* (the-as int arg0) (the-as int arg1))))
(v0-0 (object-new allocation type-to-make (the-as int a2-2)))
)
(set! (-> v0-0 elt-size) arg0)
(set! (-> v0-0 elt-count) arg1)
(set! (-> v0-0 elt-used) (the-as uint 0))
(set! (-> v0-0 busy) #f)
(set! (-> v0-0 base) (logand -64 (&-> (-> v0-0 data) 63)))
v0-0
)
)
(deftype rpc-buffer-pair (basic)
((buffer rpc-buffer 2)
(current rpc-buffer)
(last-recv-buffer pointer)
(rpc-port int32)
)
(:methods
(new (symbol type uint uint int) rpc-buffer-pair)
(call (rpc-buffer-pair uint pointer uint) int)
(add-element (rpc-buffer-pair) pointer)
(decrement-elt-used (rpc-buffer-pair) int)
(sync (rpc-buffer-pair symbol) int)
(check-busy (rpc-buffer-pair) symbol)
(pop-last-received (rpc-buffer-pair) pointer)
)
)
(defmethod new rpc-buffer-pair ((allocation symbol) (type-to-make type) (arg0 uint) (arg1 uint) (arg2 int))
(let ((s3-0 (object-new allocation type-to-make (the-as int (-> type-to-make size)))))
(set! (-> s3-0 buffer 0) (new 'global 'rpc-buffer arg0 arg1))
(set! (-> s3-0 buffer 1) (new 'global 'rpc-buffer arg0 arg1))
(set! (-> s3-0 current) (-> s3-0 buffer 0))
(set! (-> s3-0 last-recv-buffer) (the-as pointer #f))
(set! (-> s3-0 rpc-port) arg2)
s3-0
)
)
(defmethod sync ((this rpc-buffer-pair) (arg0 symbol))
(let ((s5-0 (if (= (-> this current) (-> this buffer 0))
(-> this buffer 1)
(-> this buffer 0)
)
)
)
(when (-> s5-0 busy)
(when (nonzero? (rpc-busy? (-> this rpc-port)))
(if arg0
(format 0 "STALL: waiting for IOP on RPC port #~D~%" (-> this rpc-port))
)
(while (nonzero? (rpc-busy? (-> this rpc-port)))
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
)
)
(set! (-> s5-0 busy) #f)
(set! (-> s5-0 elt-used) (the-as uint 0))
0
)
)
0
)
(defmethod check-busy ((this rpc-buffer-pair))
(let ((gp-0 (if (= (-> this current) (-> this buffer 0))
(-> this buffer 1)
(-> this buffer 0)
)
)
)
(when (-> gp-0 busy)
(if (nonzero? (rpc-busy? (-> this rpc-port)))
(return #t)
)
(set! (-> gp-0 busy) #f)
(set! (-> gp-0 elt-used) (the-as uint 0))
0
)
)
#f
)
(defmethod call ((this rpc-buffer-pair) (arg0 uint) (arg1 pointer) (arg2 uint))
(when (nonzero? (-> this current elt-used))
(let ((s2-0 (if (= (-> this current) (-> this buffer 0))
(-> this buffer 1)
(-> this buffer 0)
)
)
)
(when (-> s2-0 busy)
(when (nonzero? (rpc-busy? (-> this rpc-port)))
(format 0 "STALL: waiting for IOP on RPC port #~D~%" (-> this rpc-port))
(while (nonzero? (rpc-busy? (-> this rpc-port)))
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
(nop!)
)
)
(set! (-> s2-0 busy) #f)
(set! (-> s2-0 elt-used) (the-as uint 0))
0
)
(let ((s1-0 (-> this current)))
(rpc-call
(-> this rpc-port)
arg0
(the-as uint 1)
(the-as uint (-> s1-0 base))
(the-as int (* (-> s1-0 elt-size) (-> s1-0 elt-used)))
(the-as uint arg1)
(the-as int arg2)
)
(set! (-> s1-0 busy) (the-as basic #t))
)
(set! (-> this last-recv-buffer) arg1)
(set! (-> this current) s2-0)
)
)
0
)
(defmethod pop-last-received ((this rpc-buffer-pair))
(let ((v0-0 (-> this last-recv-buffer)))
(set! (-> this last-recv-buffer) (the-as pointer #f))
v0-0
)
)
(defmethod add-element ((this rpc-buffer-pair))
(let ((v1-0 (-> this current)))
(when (= (-> v1-0 elt-used) (-> v1-0 elt-count))
(when (zero? (-> this rpc-port))
;; if we're RPC 0, this is evidently a situation to warn about.
(format 0 "WARNING: too many sound commands queued~%")
(sound-buffer-dump) ;; og:preserve-this added for debugging
)
(format 0 "WARNING: flushing RPC port #~D~%" (-> this rpc-port)) ;; og:preserve-this
(call this (the-as uint 0) (the-as pointer 0) (the-as uint 0))
(set! v1-0 (-> this current))
)
(let ((v0-2 (&+ (-> v1-0 base) (* (-> v1-0 elt-used) (-> v1-0 elt-size)))))
(+! (-> v1-0 elt-used) 1)
v0-2
)
)
)
(defmethod decrement-elt-used ((this rpc-buffer-pair))
(if (> (-> this current elt-used) 0)
(+! (-> this current elt-used) -1)
)
0
)