dfhack-remote-node 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +16 -0
- package/README.md +126 -0
- package/build/proto.json +4390 -0
- package/dist/index.d.ts +228 -0
- package/dist/index.js +4762 -0
- package/dist/index.js.map +1 -0
- package/package.json +66 -0
- package/proto/AdventureControl.proto +109 -0
- package/proto/Basic.proto +207 -0
- package/proto/BasicApi.proto +109 -0
- package/proto/CoreProtocol.proto +92 -0
- package/proto/DwarfControl.proto +97 -0
- package/proto/ItemdefInstrument.proto +108 -0
- package/proto/RemoteFortressReader.proto +1131 -0
- package/proto/ui_sidebar_mode.proto +65 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
syntax = "proto2";
|
|
2
|
+
|
|
3
|
+
//Attempts to provide a complete framework for reading everything from a fortress needed for vizualization
|
|
4
|
+
package proto.enums.ui_sidebar_mode;
|
|
5
|
+
|
|
6
|
+
option optimize_for = LITE_RUNTIME;
|
|
7
|
+
|
|
8
|
+
enum ui_sidebar_mode
|
|
9
|
+
{
|
|
10
|
+
Default = 0;
|
|
11
|
+
Squads = 1;
|
|
12
|
+
DesignateMine = 2;
|
|
13
|
+
DesignateRemoveRamps = 3;
|
|
14
|
+
DesignateUpStair = 4;
|
|
15
|
+
DesignateDownStair = 5;
|
|
16
|
+
DesignateUpDownStair = 6;
|
|
17
|
+
DesignateUpRamp = 7;
|
|
18
|
+
DesignateChannel = 8;
|
|
19
|
+
DesignateGatherPlants = 9;
|
|
20
|
+
DesignateRemoveDesignation = 10;
|
|
21
|
+
DesignateSmooth = 11;
|
|
22
|
+
DesignateCarveTrack = 12;
|
|
23
|
+
DesignateEngrave = 13;
|
|
24
|
+
DesignateCarveFortification = 14;
|
|
25
|
+
Stockpiles = 15;
|
|
26
|
+
Build = 16;
|
|
27
|
+
QueryBuilding = 17;
|
|
28
|
+
Orders = 18;
|
|
29
|
+
OrdersForbid = 19;
|
|
30
|
+
OrdersRefuse = 20;
|
|
31
|
+
OrdersWorkshop = 21;
|
|
32
|
+
OrdersZone = 22;
|
|
33
|
+
BuildingItems = 23;
|
|
34
|
+
ViewUnits = 24;
|
|
35
|
+
LookAround = 25;
|
|
36
|
+
DesignateItemsClaim = 26;
|
|
37
|
+
DesignateItemsForbid = 27;
|
|
38
|
+
DesignateItemsMelt = 28;
|
|
39
|
+
DesignateItemsUnmelt = 29;
|
|
40
|
+
DesignateItemsDump = 30;
|
|
41
|
+
DesignateItemsUndump = 31;
|
|
42
|
+
DesignateItemsHide = 32;
|
|
43
|
+
DesignateItemsUnhide = 33;
|
|
44
|
+
DesignateChopTrees = 34;
|
|
45
|
+
DesignateToggleEngravings = 35;
|
|
46
|
+
DesignateToggleMarker = 36;
|
|
47
|
+
Hotkeys = 37;
|
|
48
|
+
DesignateTrafficHigh = 38;
|
|
49
|
+
DesignateTrafficNormal = 39;
|
|
50
|
+
DesignateTrafficLow = 40;
|
|
51
|
+
DesignateTrafficRestricted = 41;
|
|
52
|
+
Zones = 42;
|
|
53
|
+
ZonesPenInfo = 43;
|
|
54
|
+
ZonesPitInfo = 44;
|
|
55
|
+
ZonesHospitalInfo = 45;
|
|
56
|
+
ZonesGatherInfo = 46;
|
|
57
|
+
DesignateRemoveConstruction = 47;
|
|
58
|
+
DepotAccess = 48;
|
|
59
|
+
NotesPoints = 49;
|
|
60
|
+
NotesRoutes = 50;
|
|
61
|
+
Burrows = 51;
|
|
62
|
+
Hauling = 52;
|
|
63
|
+
ArenaWeather = 53;
|
|
64
|
+
ArenaTrees = 54;
|
|
65
|
+
}
|