;;-*-Lisp-*- (in-package goal) ;; definition for method 0 of type drawable-group (defmethod new drawable-group ((allocation symbol) (type-to-make type) (arg0 int)) (let ((v0-0 (object-new allocation type-to-make (the-as int (+ (-> type-to-make size) (* (+ arg0 -1) 4)))))) (set! (-> v0-0 length) arg0) v0-0 ) ) ;; definition for method 3 of type drawable-group (defmethod inspect ((this drawable-group)) (format #t "[~8x] ~A~%" this (-> this type)) (format #t "~Tid: ~D~%" (-> this id)) (format #t "~Tlength: ~D~%" (-> this length)) (format #t "~Tdata[~D]: @ #x~X~%" (-> this length) (-> this data)) (dotimes (s5-0 (-> this length)) (format #t "~T [~D] ~A~%" s5-0 (-> this data s5-0)) ) this ) ;; definition for method 2 of type drawable-group (defmethod print ((this drawable-group)) (format #t "#<~A @ #x~X [~D]" (-> this type) this (-> this length)) (dotimes (s5-0 (-> this length)) (format #t " ~A" (-> this data s5-0)) ) (format #t ">") this ) ;; definition for method 4 of type drawable-group (defmethod length ((this drawable-group)) (-> this length) ) ;; definition for method 5 of type drawable-group ;; INFO: Return type mismatch uint vs int. (defmethod asize-of ((this drawable-group)) (the-as int (+ (-> drawable-group size) (* (+ (-> this length) -1) 4))) ) ;; definition for method 8 of type drawable-group (defmethod mem-usage ((this drawable-group) (usage memory-usage-block) (flags int)) (set! (-> usage length) (max 1 (-> usage length))) (set! (-> usage data 0 name) "drawable-group") (+! (-> usage data 0 count) 1) (let ((v1-6 (asize-of this))) (+! (-> usage data 0 used) v1-6) (+! (-> usage data 0 total) (logand -16 (+ v1-6 15))) ) (dotimes (s3-0 (-> this length)) (mem-usage (-> this data s3-0) usage flags) ) this ) ;; definition for method 9 of type drawable-group (defmethod login ((this drawable-group)) (dotimes (s5-0 (-> this length)) (login (-> this data s5-0)) ) this ) ;; definition for method 10 of type drawable-group ;; INFO: Return type mismatch int vs none. (defmethod draw ((this drawable-group) (arg0 drawable-group) (arg1 display-frame)) (when (vis-cull (-> this id)) (when (sphere-cull (-> this bsphere)) (dotimes (s3-0 (-> this length)) (draw (-> this data s3-0) (-> arg0 data s3-0) arg1) ) ) ) 0 (none) ) ;; definition for method 14 of type drawable-group ;; INFO: Return type mismatch int vs none. (defmethod collect-stats ((this drawable-group)) (when (vis-cull (-> this id)) (when (sphere-cull (-> this bsphere)) (dotimes (s5-0 (-> this length)) (collect-stats (-> this data s5-0)) ) ) ) 0 (none) ) ;; definition for method 15 of type drawable-group ;; INFO: Return type mismatch int vs none. (defmethod debug-draw ((this drawable-group) (arg0 drawable) (arg1 display-frame)) (when (vis-cull (-> this id)) (when (sphere-cull (-> this bsphere)) (dotimes (s3-0 (-> this length)) (debug-draw (-> this data s3-0) (-> (the-as drawable-group arg0) data s3-0) arg1) ) ) ) 0 (none) ) ;; definition for method 16 of type drawable-group (defmethod unpack-vis ((this drawable-group) (arg0 (pointer int8)) (arg1 (pointer int8))) (dotimes (s4-0 (-> this length)) (set! arg1 (unpack-vis (-> this data s4-0) arg0 arg1)) ) arg1 )