about summary refs log tree commit diff stats
path: root/data/maps/four_rooms/rooms
Commit message (Collapse)AuthorAgeFilesLines
* Added display names to portsStar Rauchenberger2025-09-284-0/+4
|
* [Data] Annotate shuffleable portsStar Rauchenberger2025-09-214-4/+8
|
* Added keyholder sanityStar Rauchenberger2025-09-021-0/+1
|
* Changed how door location names are formattedStar Rauchenberger2025-08-307-7/+0
| | | | | | | | | | | | | | | | | | STANDARD type doors with at most four panels in the same map area and no other trigger objects will have their location names generated from the names of the panels used to open the door, similar to Lingo 1. Other door types will use the door's name. In either case, the name can be overridden using the new location_name field. Rooms can also set a panel_display_name field, which will be used in location names for doors, and is used to group panels into areas. Panels themselves can set display names, which differentiates their locations from other panels in the same area. Many maps were updated for this, but note that the_symbolic and the_unyielding have validator failures because of duplicate panel names. This won't matter until panelsanity is implemented.
* Converted puzzle symbols to an enumStar Rauchenberger2025-08-205-33/+33
|
* Started writing a data validatorStar Rauchenberger2025-08-161-4/+4
| | | | | | | Currently, it can check whether identifiers point to non-existent objects, or whether multiple objects share the same identifier. It can also determine whether an identifier is underspecified (e.g. a door doesn't specify a room, or a global connection doesn't specify a map).
* Converted to proto2Star Rauchenberger2025-08-121-1/+1
| | | | | | | | | | | | | | | | | 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.
* Added the_butterflyStar Rauchenberger2025-08-091-1/+5
| | | | The proto representation of letters has changed, so the C++ tools need to be updated.
* Assigned IDs for four_roomsStar Rauchenberger2025-08-073-6/+6
|
* Added four_roomsStar Rauchenberger2025-08-077-0/+276
revision' href='/tanetane/blame/src/sprite.h?id=be09120d1d044b476ef8b516efbdb526f20d9e2d'>^
b06b259 ^

7747a94 ^

b06b259 ^

e036838 ^


89fc2da ^

e036838 ^

1c462ef ^




8d7ef2b ^


b06b259 ^
8d7ef2b ^

e036838 ^




0334d39 ^


470b1d4 ^
aac57db ^
ecbe17b ^
470b1d4 ^
be09120 ^

470b1d4 ^
ef17fec ^
315ca2f ^
ef17fec ^

6d6e03b ^
315ca2f ^
aac3b1b ^
ca4935c ^
a6d1ded ^
be09120 ^
c1fc60c ^
be09120 ^
5931470 ^
be09120 ^
6d6e03b ^
be09120 ^


ed93360 ^
be09120 ^
ed93360 ^
59dfd3d ^
c1fc60c ^

c304def ^
c1fc60c ^

5faac69 ^
b06b259 ^
c1fc60c ^
c304def ^
8d7ef2b ^

683e22c ^
f0eab98 ^
8d7ef2b ^
aac3b1b ^
8d7ef2b ^
2183e0b ^
683e22c ^
b06b259 ^

dab96b8 ^

ae65435 ^
af49b53 ^
c1fc60c ^
683e22c ^


05ee221 ^
996076c ^

e036838 ^



89fc2da ^
1c462ef ^




0334d39 ^


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