Use unix line endings in isoworldremote.proto
parent
5dab36948a
commit
3f9d3dc110
@ -1,76 +1,76 @@
|
|||||||
package isoworldremote;
|
package isoworldremote;
|
||||||
|
|
||||||
//Describes a very basic material structure for the map embark
|
//Describes a very basic material structure for the map embark
|
||||||
option optimize_for = LITE_RUNTIME;
|
option optimize_for = LITE_RUNTIME;
|
||||||
|
|
||||||
enum BasicMaterial {
|
enum BasicMaterial {
|
||||||
AIR = 0;
|
AIR = 0;
|
||||||
OTHER = 1;
|
OTHER = 1;
|
||||||
INORGANIC = 2;
|
INORGANIC = 2;
|
||||||
LIQUID = 3;
|
LIQUID = 3;
|
||||||
PLANT = 4;
|
PLANT = 4;
|
||||||
WOOD = 5;
|
WOOD = 5;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum LiquidType {
|
enum LiquidType {
|
||||||
ICE = 0;
|
ICE = 0;
|
||||||
WATER = 1;
|
WATER = 1;
|
||||||
MAGMA = 2;
|
MAGMA = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum BasicShape {
|
enum BasicShape {
|
||||||
NONE = 0;
|
NONE = 0;
|
||||||
OPEN = 1;
|
OPEN = 1;
|
||||||
WALL = 3;
|
WALL = 3;
|
||||||
FLOOR = 4;
|
FLOOR = 4;
|
||||||
RAMP_UP = 5;
|
RAMP_UP = 5;
|
||||||
RAMP_DOWN = 6;
|
RAMP_DOWN = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
message ColorDefinition {
|
message ColorDefinition {
|
||||||
required int32 red = 1;
|
required int32 red = 1;
|
||||||
required int32 green = 2;
|
required int32 green = 2;
|
||||||
required int32 blue = 3;
|
required int32 blue = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message EmbarkTileLayer {
|
message EmbarkTileLayer {
|
||||||
repeated BasicMaterial mat_type_table = 4 [packed=true];
|
repeated BasicMaterial mat_type_table = 4 [packed=true];
|
||||||
repeated int32 mat_subtype_table = 5 [packed=true];
|
repeated int32 mat_subtype_table = 5 [packed=true];
|
||||||
repeated BasicShape tile_shape_table = 6 [packed=true];
|
repeated BasicShape tile_shape_table = 6 [packed=true];
|
||||||
repeated ColorDefinition tile_color_table = 7;
|
repeated ColorDefinition tile_color_table = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message EmbarkTile {
|
message EmbarkTile {
|
||||||
required int32 world_x = 1;
|
required int32 world_x = 1;
|
||||||
required int32 world_y = 2;
|
required int32 world_y = 2;
|
||||||
required sint32 world_z = 3;
|
required sint32 world_z = 3;
|
||||||
repeated EmbarkTileLayer tile_layer = 4;
|
repeated EmbarkTileLayer tile_layer = 4;
|
||||||
optional int32 current_year = 5;
|
optional int32 current_year = 5;
|
||||||
optional int32 current_season = 6;
|
optional int32 current_season = 6;
|
||||||
optional bool is_valid = 7;
|
optional bool is_valid = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message TileRequest {
|
message TileRequest {
|
||||||
optional int32 want_x = 1;
|
optional int32 want_x = 1;
|
||||||
optional int32 want_y = 2;
|
optional int32 want_y = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message MapRequest {
|
message MapRequest {
|
||||||
optional string save_folder = 1;
|
optional string save_folder = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message MapReply {
|
message MapReply {
|
||||||
required bool available = 1;
|
required bool available = 1;
|
||||||
optional int32 region_x = 2;
|
optional int32 region_x = 2;
|
||||||
optional int32 region_y = 3;
|
optional int32 region_y = 3;
|
||||||
optional int32 region_size_x = 4;
|
optional int32 region_size_x = 4;
|
||||||
optional int32 region_size_y = 5;
|
optional int32 region_size_y = 5;
|
||||||
optional int32 current_year = 6;
|
optional int32 current_year = 6;
|
||||||
optional int32 current_season = 7;
|
optional int32 current_season = 7;
|
||||||
}
|
}
|
||||||
|
|
||||||
message RawNames {
|
message RawNames {
|
||||||
required bool available = 1;
|
required bool available = 1;
|
||||||
repeated string inorganic = 2;
|
repeated string inorganic = 2;
|
||||||
repeated string organic = 3;
|
repeated string organic = 3;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue