]> git.vomp.tv Git - vompclient-marten.git/blob - vopts.cc
New I18n system: client code
[vompclient-marten.git] / vopts.cc
1 /*
2     Copyright 2007 Chris Tallon
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "vopts.h"
22
23 #include "colour.h"
24 #include "video.h"
25 #include "audio.h"
26 #include "remote.h"
27 #include "boxstack.h"
28 #include "woptionpane.h"
29 #include "wremoteconfig.h"
30 #include "log.h"
31 #include "option.h"
32 #include "vdr.h"
33 #include "command.h"
34
35 //#include "vdr.h"
36 //#include "command.h"
37
38 VOpts::VOpts()
39 {
40   setTitleBarOn(1);
41   setTitleBarColour(Colour::TITLEBARBACKGROUND);
42   setTitleText(tr("Options"));
43
44   setSize(520, 360);
45   createBuffer();
46   if (Video::getInstance()->getFormat() == Video::PAL)
47     setPosition(100, 110);
48   else
49     setPosition(90, 90);
50   
51   tabbar.setPosition(6, 32);
52   tabbar.setSize(getWidth() - 12, getHeight() - 34);
53   add(&tabbar);
54   
55   Option* option;
56   WOptionPane* wop;
57   
58   //  --- edit options start here
59   
60   static const char* options1[] = {"Old", "New"};
61   static const char* options3[] = {"RGB+composite", "S-Video"};
62   static const char* options4[] = {"4:3", "16:9"};
63   static const char* options5[] = {"Chop sides", "Letterbox"};
64   static const char* options6[] = {"On", "Off", "Last state"};
65   static const char* options7[] = {"All", "FTA only"};
66   static const char* options15[] = {"Alphabetical", "Chronological"};
67
68   static const char* options13[] = {"1024", "2048", "4096", "8192", "16384", "32768", "65536"};
69   static const char* options14[] = {"No", "Yes"};
70
71   // Get list of languages from VDR and construct options table
72   LangCode = VDR::getInstance()->getLanguageList();
73   options2 = new const char*[LangCode.size()];
74   options2keys = new const char*[LangCode.size()];
75   I18n::lang_code_list::const_iterator iter;
76   UINT LangNumber = 0;
77   for (iter = LangCode.begin(); iter != LangCode.end(); ++iter,++LangNumber)
78   {
79     options2[LangNumber] = iter->second.c_str();
80     options2keys[LangNumber] = iter->first.c_str();
81   }
82
83   numPanes = 4;
84   panes = new Boxx*[numPanes];
85  
86   wop = new WOptionPane(); 
87   tabbar.addTab(tr("General"), wop);
88   panes[0] = wop;
89   
90   option = new Option(1, "Remote control type",      "General", "Remote type",           Option::TYPE_TEXT, 2, 0, 0, options1);
91   options.push_back(option);
92   wop->addOptionLine(option);
93   option = new Option(2, "Language",                 "General", "LangCode",              Option::TYPE_KEYED_TEXT, LangCode.size(), 0, 0, options2, options2keys);
94   options.push_back(option);
95   wop->addOptionLine(option);
96   option = new Option(3, "TV connection type",       "TV",      "Connection",            Option::TYPE_TEXT, 2, 0, 0, options3);
97   options.push_back(option);
98   wop->addOptionLine(option);
99   option = new Option(4, "TV aspect ratio",          "TV",      "Aspect",                Option::TYPE_TEXT, 2, 0, 0, options4);
100   options.push_back(option);
101   wop->addOptionLine(option);
102   option = new Option(5, "16:9 on 4:3 display mode", "TV",      "Widemode",              Option::TYPE_TEXT, 2, 0, 0, options5);
103   options.push_back(option);
104   wop->addOptionLine(option);
105   option = new Option(6, "Power state after bootup", "General", "Power After Boot",      Option::TYPE_TEXT, 3, 0, 0, options6);
106   options.push_back(option);
107   wop->addOptionLine(option);
108   option = new Option(7, "Display channels",         "General", "Channels",              Option::TYPE_TEXT, 2, 0, 0, options7);
109   options.push_back(option);
110   wop->addOptionLine(option);
111   option = new Option(15, "Recordings sort order",   "General", "Recordings Sort Order", Option::TYPE_TEXT, 2, 0, 0, options15);
112   options.push_back(option);
113   wop->addOptionLine(option);
114   
115     
116 /*  WRemoteConfig* wrc = new WRemoteConfig();
117   tabbar.addTab(tr("Remote Control"), wrc);*/
118   Remote::getInstance()->addOptionPagesToWTB(&tabbar);
119  // panes[1] = wrc;
120
121   Video::getInstance()->addOptionPagesToWTB(&tabbar);
122   Audio::getInstance()->addOptionPagesToWTB(&tabbar);
123   
124   
125   wop = new WOptionPane(); 
126   tabbar.addTab(tr("Timers"), wop);
127   panes[1] = wop;
128   
129   option = new Option(9, "Default start margin (minutes)",  "Timers", "Start margin",  Option::TYPE_INT, 20, 5, 0, NULL);
130   options.push_back(option);
131   wop->addOptionLine(option);
132   option = new Option(10, "Default end margin (minutes)",   "Timers", "End margin",    Option::TYPE_INT, 20, 5, 0, NULL);
133   options.push_back(option);
134   wop->addOptionLine(option);
135   option = new Option(11, "Default priority",               "Timers", "Priority",      Option::TYPE_INT, 100, 99, 0, NULL);
136   options.push_back(option);
137   wop->addOptionLine(option);
138   option = new Option(12, "Default lifetime",               "Timers", "Lifetime",      Option::TYPE_INT, 100, 99, 0, NULL);
139   options.push_back(option);
140   wop->addOptionLine(option);
141
142     
143   wop = new WOptionPane(); 
144   tabbar.addTab(tr("Advanced"), wop);
145   panes[2] = wop;
146   
147   option = new Option(8, "VDR-Pri 0=OK !See forums!",  "General",  "Live priority",      Option::TYPE_INT,  100, 0, 0, NULL);
148   options.push_back(option);
149   wop->addOptionLine(option);
150   option = new Option(13, "TCP receive window size",   "Advanced", "TCP receive window", Option::TYPE_TEXT, 7, 1, 0, options13);
151   options.push_back(option);
152   wop->addOptionLine(option);
153   option = new Option(14, "Use WSS (PAL only)",        "General",  "WSS",                Option::TYPE_TEXT, 2, 0, 0, options14);
154   options.push_back(option);
155   wop->addOptionLine(option);  
156 }
157
158 VOpts::~VOpts()
159 {
160  // for (int i = 0; i < numPanes; i++) delete panes[i]; //Move to TabBar, Marten
161   delete[] panes;
162
163   for(vector<Option*>::iterator j = options.begin(); j != options.end(); j++) delete *j;
164   delete[] options2;
165   delete[] options2keys;
166 }
167
168 int VOpts::handleCommand(int command)
169 {
170   // either is active, handle back
171   if (command == Remote::BACK)
172   {
173     doSave();
174     return 4;
175   }
176   else
177   {
178     int retval = tabbar.handleCommand(command);
179     if (retval == 1)
180     {
181       BoxStack::getInstance()->update(this);
182       return 2;
183     }
184     else if (retval == 2)
185     {
186       // command was taken and actively ignored
187       return 2;
188     }
189     else
190     {
191       return 1; // ???
192     }
193   }
194 }
195
196 void VOpts::doSave()
197 {
198   VDR* vdr = VDR::getInstance();
199
200   Remote::getInstance()->saveOptionstoServer(); //Remote
201   Video::getInstance()->saveOptionstoServer(); //Video
202   Audio::getInstance()->saveOptionstoServer(); //Remote
203
204   // Damn, and the dynamic idea was going *so* well...
205   //Whats about a check with typeid operator?
206   WOptionPane* wop;
207   wop = (WOptionPane*)panes[0];
208   wop->saveOpts();  
209   wop = (WOptionPane*)panes[1];
210   wop->saveOpts();  
211   wop = (WOptionPane*)panes[2];
212   wop->saveOpts();  
213
214
215   for (UINT i = 0; i < options.size(); i++)
216   {
217     if (options[i]->configChoice == options[i]->userSetChoice) continue; // no change
218
219     Log::getInstance()->log("Options", Log::DEBUG, "Option %i has changed", i);
220
221     // Save to vdr
222
223     if (options[i]->optionType == Option::TYPE_TEXT)
224     {
225       vdr->configSave(options[i]->configSection, options[i]->configKey, options[i]->options[options[i]->userSetChoice]);
226     }
227     else if (options[i]->optionType == Option::TYPE_KEYED_TEXT)
228     {
229       vdr->configSave(options[i]->configSection, options[i]->configKey, options[i]->optionkeys[options[i]->userSetChoice]);
230     }
231     else
232     {
233       char buffer[20];
234       sprintf(buffer, "%i", options[i]->userSetChoice);
235       vdr->configSave(options[i]->configSection, options[i]->configKey, buffer);
236     }
237     
238     // Set new setting
239     
240     switch(options[i]->id)
241     {
242       case 1:
243       {
244         if (options[i]->userSetChoice == 1)
245         {
246           Log::getInstance()->log("Options", Log::DEBUG, "Setting New Remote");
247           Remote::getInstance()->setRemoteType(Remote::NEWREMOTE);
248         }
249         else
250         {
251           Log::getInstance()->log("Options", Log::DEBUG, "Setting Old Remote");
252           Remote::getInstance()->setRemoteType(Remote::OLDREMOTE);
253         }
254         break;
255       }
256       case 2:
257       {
258         Message* m = new Message();
259         m->message = Message::CHANGE_LANGUAGE;
260         m->to = Command::getInstance();
261         Command::getInstance()->postMessageNoLock(m);
262         break;
263       }
264       case 3:
265       {
266         if (options[i]->userSetChoice == 1)
267         {
268           Log::getInstance()->log("Options", Log::DEBUG, "Setting S-Video");
269           Video::getInstance()->setConnection(Video::SVIDEO);
270         }
271         else
272         {
273           Log::getInstance()->log("Options", Log::DEBUG, "Setting RGB/Composite");
274           Video::getInstance()->setConnection(Video::COMPOSITERGB);
275         }
276         break;
277       }
278       case 4:
279       {
280         if (options[i]->userSetChoice == 1)
281         {
282           Log::getInstance()->log("Options", Log::DEBUG, "Setting 16:9 TV");
283           Video::getInstance()->setTVsize(Video::ASPECT16X9);
284         }
285         else
286         {
287           Log::getInstance()->log("Options", Log::DEBUG, "Setting 4:3 TV");
288           Video::getInstance()->setTVsize(Video::ASPECT4X3);
289         }
290         break;
291       }
292       case 5:
293       {
294         if (options[i]->userSetChoice == 1)
295         {
296           Log::getInstance()->log("Options", Log::DEBUG, "Setting letterbox");
297           Video::getInstance()->setMode(Video::LETTERBOX);
298         }
299         else
300         {
301           Log::getInstance()->log("Options", Log::DEBUG, "Setting chop-sides");
302           Video::getInstance()->setMode(Video::NORMAL);
303         }
304         break;
305       }
306       case 13:
307       {
308         size_t newTCPsize = 2048;
309
310         if (options[i]->userSetChoice == 0) newTCPsize = 1024;
311         else if (options[i]->userSetChoice == 1) newTCPsize = 2048;
312         else if (options[i]->userSetChoice == 2) newTCPsize = 4096;
313         else if (options[i]->userSetChoice == 3) newTCPsize = 8192;
314         else if (options[i]->userSetChoice == 4) newTCPsize = 16384;
315         else if (options[i]->userSetChoice == 5) newTCPsize = 32768;
316         else if (options[i]->userSetChoice == 6) newTCPsize = 65536;
317
318         Log::getInstance()->log("Options", Log::DEBUG, "Setting TCP window size %i", newTCPsize);
319         VDR::getInstance()->setReceiveWindow(newTCPsize);
320         break;
321       }
322     }
323   }
324 }
325
326 void VOpts::processMessage(Message* m)
327 {
328   if (m->message == Message::MOUSE_MOVE)
329   {
330     int x=(m->parameter>>16)-getScreenX();
331     int y=(m->parameter&0xFFFF)-getScreenY();
332     if (tabbar.mouseMove(x,y)) {
333         BoxStack::getInstance()->update(this);
334     }
335     
336   }
337   else if (m->message == Message::MOUSE_LBDOWN)
338   {
339     int x=(m->parameter>>16)-getScreenX();
340     int y=(m->parameter&0xFFFF)-getScreenY();
341     if (tabbar.mouseLBDOWN(x,y)) {
342         BoxStack::getInstance()->update(this);
343     } else if (x<0 || y <0 || x>(int)getWidth() || y>(int)getHeight())
344     {
345         BoxStack::getInstance()->handleCommand(Remote::BACK); //simulate cancel press
346     }
347
348     
349   }
350 }
351