summaryrefslogtreecommitdiffstats
path: root/k9author/k9menu.cpp
blob: d1f0daa83d564231f548436d04965cb9bcad5ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
//
// C++ Implementation: k9menu
//
// Description:
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "k9menu.h"
#include "k9menubutton.h"
#include "k9process.h"
#include <tqpainter.h>
#include <tqbitmap.h>
#include <tdeapplication.h>
#include <tqfile.h>
#include <tqdom.h>
#include "k9tools.h"

k9Menu::k9Menu(TQObject *parent, const char *name)
        : TQObject(parent, name),m_format(PAL) {
    m_buttons.setAutoDelete(false);
    m_canvas=new TQCanvas(this);
    TQPixmap pix(720,576);
    pix.fill(TQt::black);
    m_canvas->setBackgroundPixmap(pix);
    m_startScript=m_startScript2=m_endScript="";
}


k9Menu::~k9Menu() {}


#include "k9menu.moc"



k9MenuButton *k9Menu::addButton() {
    k9MenuButton *button=new k9MenuButton(m_canvas);
    m_buttons.append(button);
    return button;

}



void k9Menu::createMenus(TQDomElement *_rootNode) {
  
    m_config=new k9Config();
    int height=m_format==PAL?576:480;

    TQImage img;

    //create menu image
    TQCanvasItemList l=m_canvas->allItems();
    for (TQCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) {
        if ( (*it)->rtti() > 1001  || (*it)->rtti()==TQCanvasItem::Rtti_Rectangle ) 
            (*it)->hide();
    }


    TQPixmap pixbg(720,height);
    TQPainter pbg(&pixbg);
    m_canvas->resize(720,height);
    m_canvas->update();
    m_canvas->drawArea(TQRect(0,0,720,height),&pbg);

    //create the hilite picture
    int lineWidth=2;
    img.create(720,height,8,3,TQImage::IgnoreEndian);
    TQPixmap pixhi;
    pixhi.convertFromImage(img,0);
    pixhi.fill(TQt::white);
    TQPainter phi(&pixhi);
    TQPen penhi;
    penhi.setColor(m_config->getPrefButtonHiliteColor());
    penhi.setWidth(lineWidth*2);
    phi.setPen(penhi);
    phi.setBrush(TQt::NoBrush);
    //create the hilite mask
    TQBitmap mask(720,height);
    mask.fill(TQt::color0);
    TQPainter pmk(&mask);
    TQPen penmk;
    penmk.setColor(TQt::color1);
    penmk.setWidth(lineWidth*2);
    pmk.setPen(penmk);
    pmk.setBrush(TQt::NoBrush);

    //draw buttons
    for (k9MenuButton *button=m_buttons.first();button;button=m_buttons.next()) {
        //draw hilight
        phi.drawRect(button->getLeft()+lineWidth,button->getTop()+lineWidth,button->getWidth()-lineWidth,button->getHeight()-lineWidth);
        pmk.drawRect(button->getLeft()+lineWidth,button->getTop()+lineWidth,button->getWidth()-lineWidth,button->getHeight()-lineWidth);
            
    }
    pbg.end();
    phi.end();
    pmk.end();
    pixhi.setMask(mask);
    //save menu image

    TQString bgFileName=m_workDir+TDEApplication::randomString(8)+".jpg";
    TQString hiFileName=m_workDir+TDEApplication::randomString(8)+".png";
    TQString m2vFileName= m_workDir+TDEApplication::randomString(8)+".m2v";
    TQString mpaFileName= m_workDir+TDEApplication::randomString(8)+".m2v";
    TQString mpgFileName= m_workDir+TDEApplication::randomString(8)+".mpg";

    pixbg.save(bgFileName,"JPEG",-1);
    pixhi.save(hiFileName,"PNG",-1);

    convertJpegToMpeg(bgFileName,m2vFileName);
    createAudio(mpaFileName);
    multiplex(mpaFileName,m2vFileName,mpgFileName);
    spumux(hiFileName,mpgFileName);
    appendMenu(_rootNode);

//    mask.save(m_workDir+"/mask.bmp","BMP",-1);

    TQFile::remove(bgFileName);
    TQFile::remove(m2vFileName);
    TQFile::remove(mpaFileName);
    TQFile::remove(mpgFileName);
    TQFile::remove(hiFileName);
    delete m_config;
}

void k9Menu::convertJpegToMpeg(const TQString &_imageJpg,const TQString &_imageMpg) {
    k9Process *process=new k9Process(0,0);
    process->setWorkingDirectory(m_workDir);
    process->setUseShell(true);
    if (m_format==NTSC) {
        *process << "jpeg2yuv" << "-n" << "50" << "-I" << "p" << "-f" << "29.97" << "-j" << _imageJpg << "|";
        *process << "mpeg2enc" << "-n" << "n"  <<"-f" << "8" << "-o" << _imageMpg;
    } else {
        *process << "jpeg2yuv" << "-n" << "50" << "-I" << "p" << "-f" << "25" << "-j" << _imageJpg << "|";
        *process << "mpeg2enc" << "-n" << "p"  <<"-f" << "8" << "-o" << _imageMpg;
    }
    process->start();
    process->sync();
    if (!process->normalExit()) {
        tqDebug("error converting jpeg to mpeg");
    }
    tqDebug("%s", process->debug().latin1());
}

void k9Menu::createAudio(const TQString & _audioFile) {
    k9Process *process=new k9Process(0,0);
    process->setWorkingDirectory(m_workDir);
    process->setUseShell(true);
    if (k9Tools::checkProgram("toolame"))
	    *process << "dd" << "if=/dev/zero" << "bs=4" << "count=1920" << "|" << "toolame"  << "-b" << "128"  << "-s" << "48" << "/dev/stdin" << _audioFile;
    else
	    *process << "dd" << "if=/dev/zero" << "bs=4" << "count=1920" << "|" << "twolame" <<"-r" << "-b" << "128"  << "-s" << "48000" << "/dev/stdin" << _audioFile;

    process->start();
    process->sync();
    if (!process->normalExit()) {
        tqDebug("error creating audio stream");
    }
}
void k9Menu::multiplex(const TQString &_audio, const TQString &_video, const TQString _result) {
    k9Process *process=new k9Process(0,0);
    process->setWorkingDirectory(m_workDir);
    process->setUseShell(true);
    *process << "mplex" <<  "-f" << "8" << "-o" << _result << _video << _audio;
    process->start();
    process->sync();
    if (!process->normalExit()) {
        tqDebug("error multiplexing audio and video");
    }
}

void k9Menu::spumux(const TQString &_hiFileName,const TQString &_mpgFileName) {
    TQDomElement stream,spu;

    TQDomDocument xml;

    TQDomElement root = xml.createElement( "subpictures" );
    xml.appendChild( root );

    stream=xml.createElement("stream");
    root.appendChild(stream);

    spu=xml.createElement("spu");
    stream.appendChild(spu);

    spu.setAttribute("start","00:00:00.0");
    spu.setAttribute("end","00:00:00.0");
    spu.setAttribute("highlight",_hiFileName);
    spu.setAttribute("select",_hiFileName);

    //spu.setAttribute("autooutline","infer");
    spu.setAttribute("force","yes");
 //   spu.setAttribute("autoorder","rows");
    spu.setAttribute("xoffset","0");
    spu.setAttribute("yoffset","0");

    int i=1;
    for (k9MenuButton *button=m_buttons.first();button;button=m_buttons.next()) {
        TQDomElement eButton = xml.createElement("button");
        spu.appendChild(eButton);
        eButton.setAttribute("name",TQString("button%1").arg(i));
        eButton.setAttribute("x0", TQString::number(button->getLeft()));
        eButton.setAttribute("y0",TQString::number(button->getTop()));
        eButton.setAttribute("x1",TQString::number(button->getLeft()+button->getWidth()));
        eButton.setAttribute("y1",TQString::number(button->getTop()+button->getHeight()));
        i++;
    }

    TQString spuFileName(m_workDir + TDEApplication::randomString(8)+ ".xml");
    TQFile file( spuFileName );
    if ( file.open( IO_WriteOnly ) ) {
        TQTextStream stream( &file );
        xml.save(stream,1);
        file.close();
    }


    k9Process *process=new k9Process(0,0);
    process->setWorkingDirectory(m_workDir);
    process->setUseShell(true);
//    *process << "mplex" <<  "-f" << "8" << "-o" << _result << _video << _audio;
    *process << "spumux" << spuFileName << "<" << _mpgFileName << ">" << m_menuFileName;
    process->start();
    process->sync();
    if (!process->normalExit()) {
        tqDebug("error multiplexing audio and video");
    }

    file.remove();
}

void k9Menu::appendMenu(TQDomElement *_rootNode) {
    TQDomDocument doc=_rootNode->ownerDocument();
    TQDomNodeList l=_rootNode->elementsByTagName("menus");
    TQDomNode menus;
    if (l.count()==0) {
        menus=doc.createElement("menus");
        _rootNode->appendChild(menus);
    } else {
        menus=l.item(0);
    }
   
    TQDomElement pgc=doc.createElement("pgc");
    menus.appendChild(pgc);
    TQDomElement pre=doc.createElement("pre");
    pgc.appendChild(pre);
    TQDomText txt=doc.createTextNode(m_startScript +m_startScript2);
    pre.appendChild(txt);

    TQDomElement vob=doc.createElement("vob");
    pgc.appendChild(vob);
    vob.setAttribute("file",m_menuFileName);
    vob.setAttribute("pause","inf");
    int i=1;
    for (k9MenuButton *button=m_buttons.first();button;button=m_buttons.next()) {
        TQDomElement eButton = doc.createElement("button");
        pgc.appendChild(eButton); 
        TQDomText eButtonTxt=doc.createTextNode(button->getScript());
        eButton.appendChild(eButtonTxt);
        eButton.setAttribute("name",TQString("button%1").arg(i));
        i++;
    }
    

}

TQString k9Menu::getWorkDir() const {
    return m_workDir;
}


void k9Menu::setWorkDir(const TQString& _value) {
    m_workDir = _value;
}


void k9Menu::setFormat(const eFormat& _value) {
    m_format = _value;
}


TQString k9Menu::getMenuFileName() const {
    return m_menuFileName;
}


void k9Menu::setMenuFileName(const TQString& _value) {
    m_menuFileName = _value;
}




TQCanvas* k9Menu::getCanvas() const {
    return m_canvas;
}


void k9Menu::setCanvas(TQCanvas* _value) {
    m_canvas = _value;
}

void k9Menu::setStartScript(const TQString &_value) {
    m_startScript=_value;
}


TQString k9Menu::getStartScript() const {
    return m_startScript;
}

void k9Menu::setStartScript2(const TQString &_value) {
    m_startScript2=_value;
}


TQString k9Menu::getStartScript2() const {
    return m_startScript2;
}


TQString k9Menu::getEndScript() const {
    return m_endScript;
}


void k9Menu::setEndScript(const TQString& _value) {
    m_endScript = _value;
}