about summary refs log tree commit diff stats
path: root/tools/datapacker/container.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Renamed Painting and Keyholder protosStar Rauchenberger2025-08-271-2/+2
|
* Added "endings" object typeStar Rauchenberger2025-08-201-0/+16
|
* Converted to proto2Star Rauchenberger2025-08-121-5/+5
| | | | | | | | | | | | | | | | | This will let us use an older version of protobuf in Python, and allows us to use the Godot protobuf implementation at all. Scalar fields with custom defaults in data.proto were changed to not have a default, because Godot doesn't handle it properly. The equivalent fields in human.proto still have the defaults, and datapacker copies the default value in if necessary. The Panel message in data.proto was also renamed to PanelData because otherwise it conflicts with the native Godot class named Panel. The double field in Letter was renamed to level2, because Godot couldn't handle it well. Finally, common.proto was removed and its contents were moved into data.proto, which allows us to generate code for Python without needing to edit it. NOTE: I had to slightly modify the Godot protobuf code generator. I'll need to upload that somewhere.
* Assigned IDs for the_congruentStar Rauchenberger2025-08-101-0/+40
| | | | | Keyholders are packed now. Doors can rely on keyholders and rooms. Paintings can be exit only.
* Added support for masteriesStar Rauchenberger2025-08-091-0/+77
| | | | | Also assigned IDs for the_butterfly, as well as already configured letters.
* Protobuf works! Parsing connectionsStar Rauchenberger2025-08-071-0/+205
href='#n172'>172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285