forked from DFHack/df-structures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
df-code.lisp
156 lines (128 loc) · 5.74 KB
/
df-code.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
;;; -*- mode: Lisp; indent-tabs-mode: nil; -*-
(in-package :cl-linux-debug.data-defs)
(def (class* eas) df-flagarray (array-item data-field concrete-item)
()
(:default-initargs :type-name $flag-bit))
(def (class* eas) df-static-flagarray (array-item data-field concrete-item)
((count nil :accessor t :type integer-or-null))
(:default-initargs :type-name $flag-bit))
(def (class* eas) df-array (array-item data-field concrete-item)
())
(def (class* eas) df-linked-list (sequence-item data-field concrete-item)
())
(in-package :cl-linux-debug.data-info)
;; df-flagarray implementation
(defmethod compute-effective-fields (context (type df-flagarray))
(list
(make-instance 'pointer :name $start)
(make-instance 'int32_t :name $size)))
(defmethod array-base-dimensions ((type df-flagarray) ref)
(assert (typep (effective-contained-item-of type) 'flag-bit))
(let ((s $ref.start) (e $ref.size))
(awhen (and s e)
(values (start-address-of s) (* 8 e)))))
;; df-static-flagarray implementation
(defmethod compute-effective-size (context (type df-static-flagarray))
(or (count-of type) (error "No count in df-static-flagarray.")))
(defmethod array-base-dimensions ((type df-static-flagarray) ref)
(assert (typep (effective-contained-item-of type) 'flag-bit))
(values (memory-object-ref-address ref) (* 8 (count-of type))))
;; df-array implementation
(defmethod compute-effective-fields (context (type df-array))
(list
(make-instance 'pointer :name $start)
(make-instance 'int16_t :name $size)))
(defmethod array-base-dimensions ((type df-array) ref)
(let ((s $ref.start) (e $ref.size))
(awhen (and s e)
(values (start-address-of s) e))))
(defmethod build-set-array-base-dimensions (context (node df-array) offset ctx ptr-var cnt-var)
(with-walker-utils (u ctx offset)
`(let* ((start ,(u/field-int node $start 4))
(size ,(u/field-int node $size 2)))
(when (< size most-positive-fixnum)
(setf ,ptr-var start ,cnt-var size)))))
;; df-linked-list implementation
(defmethod compute-effective-fields (context (type df-linked-list))
(assert (type-name-of type))
(list
(make-instance 'compound :name $head :type-name (type-name-of type))))
(defmethod sequence-content-items ((type df-linked-list) ref)
(loop for cur = $ref.head.next then $cur.next
while (valid-ref? cur)
collect @cur.item into items
finally (return (coerce items 'vector))))
(in-package :cl-linux-debug.data-xml)
(defun find-entity (key) (find-by-id $global.world.entities.all $id key))
(defun find-unit (key) (find-by-id $global.world.units.all $id key))
(defun find-item (key) (find-by-id $global.world.items.all $id key))
(defun find-nemesis (key) (find-by-id $global.world.nemesis.all $id key))
(defun find-artifact (key) (find-by-id $global.world.artifacts.all $id key))
(defun find-building (key) (find-by-id $global.world.buildings.all $id key))
(defun find-activity (key) (find-by-id $global.world.activities.all $id key))
(defun find-squad (key) (find-by-id $global.world.squads.all $id key))
(defun find-inorganic (key) $global.world.raws.inorganics[key])
(defun find-plant-raw (key) $global.world.raws.plants.all[key])
(defun find-creature (key) $global.world.raws.creatures.all[key])
(defun find-figure (key) (find-by-id $global.world.history.figures $id key))
(defun find-burrow (key) (find-by-id $global.ui.burrows.list $id key))
(defun material-by-id (mat-type &optional mat-idx)
(let ((raws $global.world.raws))
(cond ((and (< (or mat-idx -1) 0) (< 0 mat-type))
$raws.mat_table.builtin[mat-type])
((= mat-type 0)
(or $raws.inorganics[mat-idx].material
$raws.mat_table.builtin[0]))
((<= 19 mat-type 218)
(or $raws.creatures.all[mat-idx].material[(- mat-type 19)]
$raws.mat_table.builtin[19]))
((<= 219 mat-type 418)
(let ((hfig (find-figure mat-idx)))
(values
(or $raws.creatures.all[$hfig.race].material[(- mat-type 219)]
$raws.mat_table.builtin[19])
hfig)))
((<= 419 mat-type 618)
(or $raws.plants.all[mat-idx].material[(- mat-type 419)]
$raws.mat_table.builtin[419]))
((< 0 mat-type)
$raws.mat_table.builtin[mat-type]))))
(defun food-mat-by-idx (category-id idx)
(let* ((raws $global.world.raws)
(table $raws.mat_table)
(category (enum-to-int $organic_mat_category category-id))
(type $table.organic_types[category][idx])
(idx $table.organic_indexes[category][idx]))
(case category
((1 2 3)
$raws.creatures.all[type].caste[idx])
(otherwise
(material-by-id type idx)))))
(defun describe-material ($)
(let ((pfix (ignore-errors $.prefix))
(mtemp $.heat.melting_point))
(fmt "~@[~A ~]~A"
(if (string= pfix "") nil pfix)
(if (< mtemp 10015)
$.state_name[1] $.state_name[0]))))
(defun item-subtype-target (type subtype)
(let* ((defs $global.world.raws.itemdefs)
(key (enum-to-key $item_type type))
(table (case key
($WEAPON $defs.weapons)
($TRAPCOMP $defs.trapcomps)
($TOY $defs.toys)
($TOOL $defs.tools)
($INSTRUMENT $defs.instruments)
($ARMOR $defs.armor)
($AMMO $defs.ammo)
($SIEGEAMMO $defs.siege_ammo)
($GLOVES $defs.gloves)
($SHOES $defs.shoes)
($SHIELD $defs.shields)
($HELM $defs.helms)
($PANTS $defs.pants)
($FOOD $defs.food))))
$table[subtype]))
(defun name-has-substring? (name substring)
(some @$(search substring $) (describe-obj name)))