]> git.vomp.tv Git - vompclient.git/blob - tvmedia.h
Reorganized handling of static pictures
[vompclient.git] / tvmedia.h
1 /*
2     Copyright 2014 Marten Richter
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef TVMEDIA_H
22 #define TVMEDIA_H
23
24 #include "defines.h"
25 #include <vector>
26 #include <string>
27
28 class MovieInfo;
29 class SeriesInfo;
30
31 typedef enum tStaticArtwork
32 {
33         sa_wallpaper,
34         sa_vdrlogo,
35         sa_MAX
36 } StaticArtwork;
37
38 class TVMediaInfo
39 {
40 friend class VDR;
41 public:
42         TVMediaInfo();
43         TVMediaInfo(const TVMediaInfo& info);
44
45         friend bool operator<(const TVMediaInfo& rhs, const TVMediaInfo& lhs);
46         friend bool operator==(const TVMediaInfo& rhs, const TVMediaInfo& lhs);
47
48         void setSeasonThumb() { type_pict=2; container=0; container_member=0;};
49         void setPosterThumb() { type_pict=1; container=0; container_member=0;};
50         void setElement(int cont,int memb) { type_pict=0; container=cont; container_member=memb;};
51         void setMovieInfo(const MovieInfo * mi);
52         void setSeriesInfo(const SeriesInfo * si);
53         void setPosterThumb(const char* recname);
54         void setPosterThumb(int channel, int eventid);
55         void setChannelLogo(int channel);
56         void setStaticArtwork(StaticArtwork artwork);
57         int getType() {return type;};
58         int getPrimaryID() {return primary_id;};
59         int getSecondaryID() {return secondary_id;};
60
61 private:
62         int type; // 1 movie or 2 series or 3 unknown recording or 4 static artwork
63         int primary_id; //movie or series_id
64         int secondary_id;  //0 or episode id
65         int type_pict; // 0 full info, 1 poster thumb, 2 season thumb
66         int container; // indices the dataelements with picture in movieinfo or seriesinfo
67         int container_member; // index into the container
68         std::string primary_name;
69 };
70
71 struct TVMedia
72 {
73         unsigned int width;
74         unsigned int height;
75
76         // no filename, file handling is only on the server
77         TVMediaInfo info;
78
79 };
80
81 typedef std::vector<TVMedia> TVMedias;
82
83 struct Actor
84 {
85         std::string name;
86         std::string role;
87         TVMedia thumb;
88 };
89
90 typedef std::vector<Actor> Actors;
91
92 #endif