Corrected proto

This commit is contained in:
Andreas 2013-01-14 21:42:08 +01:00
parent aa8d512444
commit 570b4f9e88
1 changed files with 0 additions and 33 deletions

View File

@ -10,18 +10,13 @@ enum MsgType {
REQUEST_PLAYLIST_SONGS = 4;
CHANGE_SONG = 5;
SET_VOLUME = 6;
<<<<<<< HEAD
=======
>>>>>>> remote/remotecontrol
// Messages send by both
PLAY = 20;
PLAYPAUSE = 21;
PAUSE = 22;
STOP = 23;
NEXT = 24;
<<<<<<< HEAD
PREVIOUS = 25;
SHUFFLE_PLAYLIST = 26;
// Messages that contain the repeat or random mode
@ -29,11 +24,6 @@ enum MsgType {
REPEAT = 27;
RANDOM = 28;
=======
PREV = 25;
TOGGLE_SHUFFLE = 26;
>>>>>>> remote/remotecontrol
// Messages send from server to client
INFOS = 40;
CURRENT_METAINFOS = 41;
@ -51,25 +41,7 @@ enum EngineState {
Paused = 3;
}
<<<<<<< HEAD
// Song Metadata
=======
message Message {
optional int32 version = 1 [default=1];
optional MsgType msgType = 2 [default=UNKNOWN];
optional EngineState state = 3;
optional ClementineInfo info = 4;
optional SongMetadata currentSong = 5;
optional int32 volume = 6;
repeated Playlist playlists = 7;
}
message ClementineInfo {
optional string version = 1;
}
>>>>>>> remote/remotecontrol
message SongMetadata {
optional int32 id = 1; // unique id of the song
optional int32 index = 2; // Index of the current row of the active playlist
@ -90,16 +62,11 @@ message SongMetadata {
message Playlist {
optional int32 id = 1;
optional string name = 2;
<<<<<<< HEAD
optional int32 item_count = 3;
optional bool active = 4;
// The songs are only sent when the client requests them.
// See src/remotecontrol/outgoingdatacreator.cpp for more info
=======
optional bool active = 3;
>>>>>>> remote/remotecontrol
repeated SongMetadata songs = 10;
}