summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-23 14:43:54 (UTC)
committer llornkcor <llornkcor>2002-06-23 14:43:54 (UTC)
commit6382b7352205a71557bd87b4f43d7f19f7f3330e (patch) (unidiff)
tree16097c620467a774336a717dba4b4f316e6208c4
parent8672a04720e7421e7f41bbf49364bcc1df910bb2 (diff)
downloadopie-6382b7352205a71557bd87b4f43d7f19f7f3330e.zip
opie-6382b7352205a71557bd87b4f43d7f19f7f3330e.tar.gz
opie-6382b7352205a71557bd87b4f43d7f19f7f3330e.tar.bz2
took out unreachable code
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/vmemo/vmemo.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp
index 4278f46..cfa07b4 100644
--- a/core/applets/vmemo/vmemo.cpp
+++ b/core/applets/vmemo/vmemo.cpp
@@ -1,630 +1,613 @@
1/************************************************************************************ 1/************************************************************************************
2 ** 2 **
3 ** This file may be distributed and/or modified under the terms of the 3 ** This file may be distributed and/or modified under the terms of the
4 ** GNU General Public License version 2 as published by the Free Software 4 ** GNU General Public License version 2 as published by the Free Software
5 ** Foundation and appearing in the file LICENSE.GPL included in the 5 ** Foundation and appearing in the file LICENSE.GPL included in the
6 ** packaging of this file. 6 ** packaging of this file.
7 ** 7 **
8 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 8 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
9 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 9 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
10 ** 10 **
11 ************************************************************************************/ 11 ************************************************************************************/
12// copyright 2002 Jeremy Cowgar <jc@cowgar.com> 12// copyright 2002 Jeremy Cowgar <jc@cowgar.com>
13/* 13/*
14 * $Id$ 14 * $Id$
15 */ 15 */
16// Sun 03-17-2002 L.J.Potter <ljp@llornkcor.com> 16// Sun 03-17-2002 L.J.Potter <ljp@llornkcor.com>
17#include <sys/utsname.h> 17#include <sys/utsname.h>
18#include <sys/time.h> 18#include <sys/time.h>
19#include <sys/types.h> 19#include <sys/types.h>
20#include <unistd.h> 20#include <unistd.h>
21#include <stdio.h> 21#include <stdio.h>
22#include <sys/stat.h> 22#include <sys/stat.h>
23#include <fcntl.h> 23#include <fcntl.h>
24#include <sys/ioctl.h> 24#include <sys/ioctl.h>
25#include <linux/soundcard.h> 25#include <linux/soundcard.h>
26 26
27#include <string.h> 27#include <string.h>
28#include <stdlib.h> 28#include <stdlib.h>
29#include <errno.h> 29#include <errno.h>
30 30
31typedef struct _waveheader { 31typedef struct _waveheader {
32 u_long main_chunk; /* 'RIFF' */ 32 u_long main_chunk; /* 'RIFF' */
33 u_long length; /* filelen */ 33 u_long length; /* filelen */
34 u_long chunk_type; /* 'WAVE' */ 34 u_long chunk_type; /* 'WAVE' */
35 u_long sub_chunk; /* 'fmt ' */ 35 u_long sub_chunk; /* 'fmt ' */
36 u_long sc_len; /* length of sub_chunk, =16 36 u_long sc_len; /* length of sub_chunk, =16
37 (chunckSize) format len */ 37 (chunckSize) format len */
38 u_short format; /* should be 1 for PCM-code (formatTag) */ 38 u_short format; /* should be 1 for PCM-code (formatTag) */
39 39
40 u_short modus; /* 1 Mono, 2 Stereo (channels) */ 40 u_short modus; /* 1 Mono, 2 Stereo (channels) */
41 u_long sample_fq; /* samples per second (samplesPerSecond) */ 41 u_long sample_fq; /* samples per second (samplesPerSecond) */
42 u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */ 42 u_long byte_p_sec; /* avg bytes per second (avgBytePerSecond) */
43 u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */ 43 u_short byte_p_spl; /* samplesize; 1 or 2 bytes (blockAlign) */
44 u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */ 44 u_short bit_p_spl; /* 8, 12 or 16 bit (bitsPerSample) */
45 45
46 u_long data_chunk; /* 'data' */ 46 u_long data_chunk; /* 'data' */
47 47
48 u_long data_length;/* samplecount */ 48 u_long data_length;/* samplecount */
49} WaveHeader; 49} WaveHeader;
50 50
51#define RIFF 0x46464952 51#define RIFF 0x46464952
52#define WAVE 0x45564157 52#define WAVE 0x45564157
53#define FMT 0x20746D66 53#define FMT 0x20746D66
54#define DATA 0x61746164 54#define DATA 0x61746164
55#define PCM_CODE 1 55#define PCM_CODE 1
56#define WAVE_MONO 1 56#define WAVE_MONO 1
57#define WAVE_STEREO 2 57#define WAVE_STEREO 2
58 58
59#include "vmemo.h" 59#include "vmemo.h"
60 60
61#include <qpe/qpeapplication.h> 61#include <qpe/qpeapplication.h>
62#include <qpe/resource.h> 62#include <qpe/resource.h>
63#include <qpe/config.h> 63#include <qpe/config.h>
64 64
65#include <qpainter.h> 65#include <qpainter.h>
66#include <qdatetime.h> 66#include <qdatetime.h>
67#include <qregexp.h> 67#include <qregexp.h>
68#include <qsound.h> 68#include <qsound.h>
69#include <qfile.h> 69#include <qfile.h>
70#include <qmessagebox.h> 70#include <qmessagebox.h>
71 71
72int seq = 0; 72int seq = 0;
73 73
74/* XPM */ 74/* XPM */
75static char * vmemo_xpm[] = { 75static char * vmemo_xpm[] = {
76 "16 16 102 2", 76 "16 16 102 2",
77 " c None", 77 " c None",
78 ". c #60636A", 78 ". c #60636A",
79 "+ c #6E6E72", 79 "+ c #6E6E72",
80 "@ c #68696E", 80 "@ c #68696E",
81 "# c #4D525C", 81 "# c #4D525C",
82 "$ c #6B6C70", 82 "$ c #6B6C70",
83 "% c #E3E3E8", 83 "% c #E3E3E8",
84 "& c #EEEEF2", 84 "& c #EEEEF2",
85 "* c #EAEAEF", 85 "* c #EAEAEF",
86 "= c #CACAD0", 86 "= c #CACAD0",
87 "- c #474A51", 87 "- c #474A51",
88 "; c #171819", 88 "; c #171819",
89 "> c #9B9B9F", 89 "> c #9B9B9F",
90 ", c #EBEBF0", 90 ", c #EBEBF0",
91 "' c #F4F4F7", 91 "' c #F4F4F7",
92 ") c #F1F1F5", 92 ") c #F1F1F5",
93 "! c #DEDEE4", 93 "! c #DEDEE4",
94 "~ c #57575C", 94 "~ c #57575C",
95 "{ c #010101", 95 "{ c #010101",
96 "] c #A2A2A6", 96 "] c #A2A2A6",
97 "^ c #747477", 97 "^ c #747477",
98 "/ c #B5B5B8", 98 "/ c #B5B5B8",
99 "( c #AEAEB2", 99 "( c #AEAEB2",
100 "_ c #69696D", 100 "_ c #69696D",
101 ": c #525256", 101 ": c #525256",
102 "< c #181C24", 102 "< c #181C24",
103 "[ c #97979B", 103 "[ c #97979B",
104 "} c #A7A7AC", 104 "} c #A7A7AC",
105 "| c #B0B0B4", 105 "| c #B0B0B4",
106 "1 c #C8C8D1", 106 "1 c #C8C8D1",
107 "2 c #75757B", 107 "2 c #75757B",
108 "3 c #46464A", 108 "3 c #46464A",
109 "4 c #494A4F", 109 "4 c #494A4F",
110 "5 c #323234", 110 "5 c #323234",
111 "6 c #909095", 111 "6 c #909095",
112 "7 c #39393B", 112 "7 c #39393B",
113 "8 c #757578", 113 "8 c #757578",
114 "9 c #87878E", 114 "9 c #87878E",
115 "0 c #222224", 115 "0 c #222224",
116 "a c #414144", 116 "a c #414144",
117 "b c #6A6A6E", 117 "b c #6A6A6E",
118 "c c #020C16", 118 "c c #020C16",
119 "d c #6B6B6F", 119 "d c #6B6B6F",
120 "e c #68686D", 120 "e c #68686D",
121 "f c #5B5B60", 121 "f c #5B5B60",
122 "g c #8A8A8F", 122 "g c #8A8A8F",
123 "h c #6B6B6E", 123 "h c #6B6B6E",
124 "i c #ADADB2", 124 "i c #ADADB2",
125 "j c #828289", 125 "j c #828289",
126 "k c #3E3E41", 126 "k c #3E3E41",
127 "l c #CFCFD7", 127 "l c #CFCFD7",
128 "m c #4C4C50", 128 "m c #4C4C50",
129 "n c #000000", 129 "n c #000000",
130 "o c #66666A", 130 "o c #66666A",
131 "p c #505054", 131 "p c #505054",
132 "q c #838388", 132 "q c #838388",
133 "r c #A1A1A7", 133 "r c #A1A1A7",
134 "s c #A9A9AE", 134 "s c #A9A9AE",
135 "t c #A8A8B0", 135 "t c #A8A8B0",
136 "u c #5E5E63", 136 "u c #5E5E63",
137 "v c #3A3A3E", 137 "v c #3A3A3E",
138 "w c #BDBDC6", 138 "w c #BDBDC6",
139 "x c #59595E", 139 "x c #59595E",
140 "y c #76767C", 140 "y c #76767C",
141 "z c #373738", 141 "z c #373738",
142 "A c #717174", 142 "A c #717174",
143 "B c #727278", 143 "B c #727278",
144 "C c #1C1C1E", 144 "C c #1C1C1E",
145 "D c #3C3C3F", 145 "D c #3C3C3F",
146 "E c #ADADB6", 146 "E c #ADADB6",
147 "F c #54555A", 147 "F c #54555A",
148 "G c #8B8C94", 148 "G c #8B8C94",
149 "H c #5A5A5F", 149 "H c #5A5A5F",
150 "I c #BBBBC3", 150 "I c #BBBBC3",
151 "J c #C4C4CB", 151 "J c #C4C4CB",
152 "K c #909098", 152 "K c #909098",
153 "L c #737379", 153 "L c #737379",
154 "M c #343437", 154 "M c #343437",
155 "N c #8F8F98", 155 "N c #8F8F98",
156 "O c #000407", 156 "O c #000407",
157 "P c #2D3137", 157 "P c #2D3137",
158 "Q c #B0B1BC", 158 "Q c #B0B1BC",
159 "R c #3B3C40", 159 "R c #3B3C40",
160 "S c #6E6E74", 160 "S c #6E6E74",
161 "T c #95959C", 161 "T c #95959C",
162 "U c #74747A", 162 "U c #74747A",
163 "V c #1D1D1E", 163 "V c #1D1D1E",
164 "W c #91929A", 164 "W c #91929A",
165 "X c #42444A", 165 "X c #42444A",
166 "Y c #22282E", 166 "Y c #22282E",
167 "Z c #B0B2BC", 167 "Z c #B0B2BC",
168 "` c #898A90", 168 "` c #898A90",
169 " . c #65656A", 169 " . c #65656A",
170 ".. c #999AA2", 170 ".. c #999AA2",
171 "+. c #52535A", 171 "+. c #52535A",
172 "@. c #151B21", 172 "@. c #151B21",
173 "#. c #515257", 173 "#. c #515257",
174 "$. c #B5B5BE", 174 "$. c #B5B5BE",
175 "%. c #616167", 175 "%. c #616167",
176 "&. c #1A1D22", 176 "&. c #1A1D22",
177 "*. c #000713", 177 "*. c #000713",
178 "=. c #1F1F21", 178 "=. c #1F1F21",
179 " ", 179 " ",
180 " . + @ # ", 180 " . + @ # ",
181 " $ % & * = - ", 181 " $ % & * = - ",
182 " ; > , ' ) ! ~ ", 182 " ; > , ' ) ! ~ ",
183 " { ] ^ / ( _ : ", 183 " { ] ^ / ( _ : ",
184 " < [ } | 1 2 3 ", 184 " < [ } | 1 2 3 ",
185 " 4 5 6 7 8 9 0 a b c ", 185 " 4 5 6 7 8 9 0 a b c ",
186 " d e f g h i j 3 k l m n ", 186 " d e f g h i j 3 k l m n ",
187 " o p q r s t u v w n ", 187 " o p q r s t u v w n ",
188 " o x y z A B C D E n ", 188 " o x y z A B C D E n ",
189 " F G H I J K L M N O ", 189 " F G H I J K L M N O ",
190 " P Q R S T U V W X ", 190 " P Q R S T U V W X ",
191 " Y Z ` b ...+. ", 191 " Y Z ` b ...+. ",
192 " @.#.$.%.&. ", 192 " @.#.$.%.&. ",
193 " *.B =. ", 193 " *.B =. ",
194 " n n n n n n n n n "}; 194 " n n n n n n n n n "};
195 195
196 196
197VMemo::VMemo( QWidget *parent, const char *_name ) 197VMemo::VMemo( QWidget *parent, const char *_name )
198 : QWidget( parent, _name ) 198 : QWidget( parent, _name )
199{ 199{
200 setFixedHeight( 18 ); 200 setFixedHeight( 18 );
201 setFixedWidth( 14 ); 201 setFixedWidth( 14 );
202 202
203 recording = FALSE; 203 recording = FALSE;
204 204
205 struct utsname name; /* check for embedix kernel running on the zaurus*/ 205 struct utsname name; /* check for embedix kernel running on the zaurus*/
206 if (uname(&name) != -1) { 206 if (uname(&name) != -1) {
207 QString release=name.release; 207 QString release=name.release;
208 Config vmCfg("Vmemo"); 208 Config vmCfg("Vmemo");
209 vmCfg.setGroup("Defaults"); 209 vmCfg.setGroup("Defaults");
210 int toggleKey = setToggleButton(vmCfg.readNumEntry("toggleKey", -1)); 210 int toggleKey = setToggleButton(vmCfg.readNumEntry("toggleKey", -1));
211 211
212 qDebug("toggleKey %d", toggleKey); 212 qDebug("toggleKey %d", toggleKey);
213 213
214 if(release.find("embedix",0,TRUE) !=-1) 214 if(release.find("embedix",0,TRUE) !=-1)
215 systemZaurus=TRUE; 215 systemZaurus=TRUE;
216 else 216 else
217 systemZaurus=FALSE; 217 systemZaurus=FALSE;
218 218
219 myChannel = new QCopChannel( "QPE/VMemo", this ); 219 myChannel = new QCopChannel( "QPE/VMemo", this );
220 connect( myChannel, SIGNAL(received(const QCString&, const QByteArray&)), 220 connect( myChannel, SIGNAL(received(const QCString&, const QByteArray&)),
221 this, SLOT(receive(const QCString&, const QByteArray&)) ); 221 this, SLOT(receive(const QCString&, const QByteArray&)) );
222 222
223 if( toggleKey != -1 ) { 223 if( toggleKey != -1 ) {
224 // QPEApplication::grabKeyboard(); 224 // QPEApplication::grabKeyboard();
225 QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)"); 225 QCopEnvelope e("QPE/Desktop", "keyRegister(int key, QString channel, QString message)");
226 // e << 4096; // Key_Escape 226 // e << 4096; // Key_Escape
227 // e << Key_F5; //4148 227 // e << Key_F5; //4148
228 e << toggleKey; 228 e << toggleKey;
229 e << QString("QPE/VMemo"); 229 e << QString("QPE/VMemo");
230 e << QString("toggleRecord()"); 230 e << QString("toggleRecord()");
231 } 231 }
232 // if( vmCfg.readNumEntry("hideIcon",0) == 1 || toggleKey > 0) 232 // if( vmCfg.readNumEntry("hideIcon",0) == 1 || toggleKey > 0)
233 // hide(); 233 // hide();
234 } 234 }
235} 235}
236 236
237VMemo::~VMemo() 237VMemo::~VMemo()
238{ 238{
239} 239}
240 240
241void VMemo::receive( const QCString &msg, const QByteArray &data ) 241void VMemo::receive( const QCString &msg, const QByteArray &data )
242{ 242{
243 QDataStream stream( data, IO_ReadOnly ); 243 QDataStream stream( data, IO_ReadOnly );
244 if (msg == "toggleRecord()") { 244 if (msg == "toggleRecord()") {
245 if (recording) { 245 if (recording) {
246 fromToggle = TRUE; 246 fromToggle = TRUE;
247 stopRecording(); 247 stopRecording();
248 } else { 248 } else {
249 fromToggle = TRUE; 249 fromToggle = TRUE;
250 startRecording(); 250 startRecording();
251 } 251 }
252 } 252 }
253} 253}
254 254
255void VMemo::paintEvent( QPaintEvent* ) 255void VMemo::paintEvent( QPaintEvent* )
256{ 256{
257 QPainter p(this); 257 QPainter p(this);
258 p.drawPixmap( 0, 1,( const char** ) vmemo_xpm ); 258 p.drawPixmap( 0, 1,( const char** ) vmemo_xpm );
259} 259}
260 260
261void VMemo::mousePressEvent( QMouseEvent * ) 261void VMemo::mousePressEvent( QMouseEvent * )
262{ 262{
263 startRecording(); 263 startRecording();
264} 264}
265 265
266void VMemo::mouseReleaseEvent( QMouseEvent * ) 266void VMemo::mouseReleaseEvent( QMouseEvent * )
267{ 267{
268 stopRecording(); 268 stopRecording();
269} 269}
270 270
271bool VMemo::startRecording() { 271bool VMemo::startRecording() {
272 272
273 if ( recording) 273 if ( recording)
274 return FALSE;; 274 return FALSE;;
275 275
276 Config config( "Vmemo" ); 276 Config config( "Vmemo" );
277 config.setGroup( "System" ); 277 config.setGroup( "System" );
278 278
279 useAlerts = config.readBoolEntry("Alert"); 279 useAlerts = config.readBoolEntry("Alert");
280 if(useAlerts) { 280 if(useAlerts) {
281 281
282 msgLabel = new QLabel( 0, "alertLabel" ); 282 msgLabel = new QLabel( 0, "alertLabel" );
283 msgLabel->setText("<B><P><font size=+2>VMemo-Recording</font></B>"); 283 msgLabel->setText("<B><P><font size=+2>VMemo-Recording</font></B>");
284 msgLabel->show(); 284 msgLabel->show();
285 } 285 }
286 286
287 // if(useAlerts) 287 // if(useAlerts)
288 // QMessageBox::message("VMemo","Really Record?");//) ==1) 288 // QMessageBox::message("VMemo","Really Record?");//) ==1)
289 // return; 289 // return;
290 // } else { 290 // } else {
291 // if (!systemZaurus ) 291 // if (!systemZaurus )
292 // QSound::play(Resource::findSound("vmemob")); 292 // QSound::play(Resource::findSound("vmemob"));
293 // } 293 // }
294 qDebug("Start recording engines"); 294 qDebug("Start recording engines");
295 recording = TRUE; 295 recording = TRUE;
296 296
297 if (openDSP() == -1) { 297 if (openDSP() == -1) {
298 // QMessageBox::critical(0, "vmemo", "Could not open dsp device.\n"+errorMsg, "Abort"); 298 // QMessageBox::critical(0, "vmemo", "Could not open dsp device.\n"+errorMsg, "Abort");
299 // delete msgLabel; 299 // delete msgLabel;
300 recording = FALSE; 300 recording = FALSE;
301 return FALSE; 301 return FALSE;
302 } 302 }
303 303
304 config.setGroup("Defaults"); 304 config.setGroup("Defaults");
305 305
306 QDateTime dt = QDateTime::currentDateTime(); 306 QDateTime dt = QDateTime::currentDateTime();
307 307
308 QString fName; 308 QString fName;
309 config.setGroup( "System" ); 309 config.setGroup( "System" );
310 fName = QPEApplication::documentDir() ; 310 fName = QPEApplication::documentDir() ;
311 fileName = config.readEntry("RecLocation", fName); 311 fileName = config.readEntry("RecLocation", fName);
312 312
313 int s; 313 int s;
314 s=fileName.find(':'); 314 s=fileName.find(':');
315 if(s) 315 if(s)
316 fileName=fileName.right(fileName.length()-s-2); 316 fileName=fileName.right(fileName.length()-s-2);
317 qDebug("filename will be "+fileName); 317 qDebug("filename will be "+fileName);
318 if( fileName.left(1).find('/') == -1) 318 if( fileName.left(1).find('/') == -1)
319 fileName="/"+fileName; 319 fileName="/"+fileName;
320 if( fileName.right(1).find('/') == -1) 320 if( fileName.right(1).find('/') == -1)
321 fileName+="/"; 321 fileName+="/";
322 fName = "vm_"+ dt.toString()+ ".wav"; 322 fName = "vm_"+ dt.toString()+ ".wav";
323 323
324 fileName+=fName; 324 fileName+=fName;
325 qDebug("filename is "+fileName); 325 qDebug("filename is "+fileName);
326 // No spaces in the filename 326 // No spaces in the filename
327 fileName.replace(QRegExp("'"),""); 327 fileName.replace(QRegExp("'"),"");
328 fileName.replace(QRegExp(" "),"_"); 328 fileName.replace(QRegExp(" "),"_");
329 fileName.replace(QRegExp(":"),"."); 329 fileName.replace(QRegExp(":"),".");
330 fileName.replace(QRegExp(","),""); 330 fileName.replace(QRegExp(","),"");
331 331
332 if(openWAV(fileName.latin1()) == -1) { 332 if(openWAV(fileName.latin1()) == -1) {
333 // QString err("Could not open the output file\n"); 333 // QString err("Could not open the output file\n");
334 // err += fileName; 334 // err += fileName;
335 // QMessageBox::critical(0, "vmemo", err, "Abort"); 335 // QMessageBox::critical(0, "vmemo", err, "Abort");
336 close(dsp); 336 close(dsp);
337 return FALSE; 337 return FALSE;
338 } 338 }
339 339
340 QArray<int> cats(1); 340 QArray<int> cats(1);
341 cats[0] = config.readNumEntry("Category", 0); 341 cats[0] = config.readNumEntry("Category", 0);
342 342
343 QString dlName("vm_"); 343 QString dlName("vm_");
344 dlName += dt.toString(); 344 dlName += dt.toString();
345 DocLnk l; 345 DocLnk l;
346 l.setFile(fileName); 346 l.setFile(fileName);
347 l.setName(dlName); 347 l.setName(dlName);
348 l.setType("audio/x-wav"); 348 l.setType("audio/x-wav");
349 l.setCategories(cats); 349 l.setCategories(cats);
350 l.writeLink(); 350 l.writeLink();
351 351
352 352
353 record(); 353 record();
354 // delete msgLabel; 354 // delete msgLabel;
355 return TRUE; 355 return TRUE;
356} 356}
357 357
358void VMemo::stopRecording() { 358void VMemo::stopRecording() {
359 recording = FALSE; 359 recording = FALSE;
360 if(useAlerts) 360 if(useAlerts)
361 if( msgLabel) delete msgLabel; 361 if( msgLabel) delete msgLabel;
362} 362}
363 363
364int VMemo::openDSP() 364int VMemo::openDSP()
365{ 365{
366 Config cfg("Vmemo"); 366 Config cfg("Vmemo");
367 cfg.setGroup("Record"); 367 cfg.setGroup("Record");
368 368
369 speed = cfg.readNumEntry("SampleRate", 22050); 369 speed = cfg.readNumEntry("SampleRate", 22050);
370 channels = cfg.readNumEntry("Stereo", 1) ? 2 : 1; // 1 = stereo(2), 0 = mono(1) 370 channels = cfg.readNumEntry("Stereo", 1) ? 2 : 1; // 1 = stereo(2), 0 = mono(1)
371 if (cfg.readNumEntry("SixteenBit", 1)==1) { 371 if (cfg.readNumEntry("SixteenBit", 1)==1) {
372 format = AFMT_S16_LE; 372 format = AFMT_S16_LE;
373 resolution = 16; 373 resolution = 16;
374 } else { 374 } else {
375 format = AFMT_U8; 375 format = AFMT_U8;
376 resolution = 8; 376 resolution = 8;
377 } 377 }
378 378
379 qDebug("samplerate: %d, channels %d, resolution %d", speed, channels, resolution); 379 qDebug("samplerate: %d, channels %d, resolution %d", speed, channels, resolution);
380 380
381 if(systemZaurus) { 381 if(systemZaurus) {
382 dsp = open("/dev/dsp1", O_RDWR); //Zaurus needs /dev/dsp1 382 dsp = open("/dev/dsp1", O_RDWR); //Zaurus needs /dev/dsp1
383 channels=1; //zaurus has one input channel 383 channels=1; //zaurus has one input channel
384 } else { 384 } else {
385 dsp = open("/dev/dsp", O_RDWR); 385 dsp = open("/dev/dsp", O_RDWR);
386 } 386 }
387 387
388 if(dsp == -1) { 388 if(dsp == -1) {
389 perror("open(\"/dev/dsp\")"); 389 perror("open(\"/dev/dsp\")");
390 errorMsg="open(\"/dev/dsp\")\n "+(QString)strerror(errno); 390 errorMsg="open(\"/dev/dsp\")\n "+(QString)strerror(errno);
391 QMessageBox::critical(0, "vmemo", errorMsg, "Abort"); 391 QMessageBox::critical(0, "vmemo", errorMsg, "Abort");
392 return -1; 392 return -1;
393 } 393 }
394 394
395 if(ioctl(dsp, SNDCTL_DSP_SETFMT , &format)==-1) { 395 if(ioctl(dsp, SNDCTL_DSP_SETFMT , &format)==-1) {
396 perror("ioctl(\"SNDCTL_DSP_SETFMT\")"); 396 perror("ioctl(\"SNDCTL_DSP_SETFMT\")");
397 return -1; 397 return -1;
398 } 398 }
399 if(ioctl(dsp, SNDCTL_DSP_CHANNELS , &channels)==-1) { 399 if(ioctl(dsp, SNDCTL_DSP_CHANNELS , &channels)==-1) {
400 perror("ioctl(\"SNDCTL_DSP_CHANNELS\")"); 400 perror("ioctl(\"SNDCTL_DSP_CHANNELS\")");
401 return -1; 401 return -1;
402 } 402 }
403 if(ioctl(dsp, SNDCTL_DSP_SPEED , &speed)==-1) { 403 if(ioctl(dsp, SNDCTL_DSP_SPEED , &speed)==-1) {
404 perror("ioctl(\"SNDCTL_DSP_SPEED\")"); 404 perror("ioctl(\"SNDCTL_DSP_SPEED\")");
405 return -1; 405 return -1;
406 } 406 }
407 if(ioctl(dsp, SOUND_PCM_READ_RATE , &rate)==-1) { 407 if(ioctl(dsp, SOUND_PCM_READ_RATE , &rate)==-1) {
408 perror("ioctl(\"SOUND_PCM_READ_RATE\")"); 408 perror("ioctl(\"SOUND_PCM_READ_RATE\")");
409 return -1; 409 return -1;
410 } 410 }
411 411
412 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; //mute 412 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << FALSE; //mute
413 413
414 return 1; 414 return 1;
415} 415}
416 416
417int VMemo::openWAV(const char *filename) 417int VMemo::openWAV(const char *filename)
418{ 418{
419 track.setName(filename); 419 track.setName(filename);
420 if(!track.open(IO_WriteOnly|IO_Truncate|IO_Raw)) { 420 if(!track.open(IO_WriteOnly|IO_Truncate|IO_Raw)) {
421 errorMsg=filename; 421 errorMsg=filename;
422 return -1; 422 return -1;
423 } 423 }
424 424
425 wav=track.handle(); 425 wav=track.handle();
426 426
427 WaveHeader wh; 427 WaveHeader wh;
428 428
429 wh.main_chunk = RIFF; 429 wh.main_chunk = RIFF;
430 wh.length=0; 430 wh.length=0;
431 wh.chunk_type = WAVE; 431 wh.chunk_type = WAVE;
432 wh.sub_chunk = FMT; 432 wh.sub_chunk = FMT;
433 wh.sc_len = 16; 433 wh.sc_len = 16;
434 wh.format = PCM_CODE; 434 wh.format = PCM_CODE;
435 wh.modus = channels; 435 wh.modus = channels;
436 wh.sample_fq = speed; 436 wh.sample_fq = speed;
437 wh.byte_p_sec = speed * channels * resolution/8; 437 wh.byte_p_sec = speed * channels * resolution/8;
438 wh.byte_p_spl = channels * (resolution / 8); 438 wh.byte_p_spl = channels * (resolution / 8);
439 wh.bit_p_spl = resolution; 439 wh.bit_p_spl = resolution;
440 wh.data_chunk = DATA; 440 wh.data_chunk = DATA;
441 wh.data_length= 0; 441 wh.data_length= 0;
442 // qDebug("Write header channels %d, speed %d, b/s %d, blockalign %d, bitrate %d" 442 // qDebug("Write header channels %d, speed %d, b/s %d, blockalign %d, bitrate %d"
443 // , wh.modus, wh.sample_fq, wh.byte_p_sec, wh.byte_p_spl, wh.bit_p_spl ); 443 // , wh.modus, wh.sample_fq, wh.byte_p_sec, wh.byte_p_spl, wh.bit_p_spl );
444 write (wav, &wh, sizeof(WaveHeader)); 444 write (wav, &wh, sizeof(WaveHeader));
445 445
446 return 1; 446 return 1;
447} 447}
448 448
449void VMemo::record(void) 449void VMemo::record(void)
450{ 450{
451 int length=0, result, value; 451 int length=0, result, value;
452 QString msg; 452 QString msg;
453 msg.sprintf("Recording format %d", format); 453 msg.sprintf("Recording format %d", format);
454 qDebug(msg); 454 qDebug(msg);
455 455
456 if(systemZaurus) { 456 if(systemZaurus) {
457 457
458 msg.sprintf("Recording format zaurus"); 458 msg.sprintf("Recording format zaurus");
459 qDebug(msg); 459 qDebug(msg);
460 signed short sound[512], monoBuffer[512]; 460 signed short sound[512], monoBuffer[512];
461 461
462 if(format==AFMT_S16_LE) { 462 if(format==AFMT_S16_LE) {
463 463
464 464
465 465
466 while(recording) { 466 while(recording) {
467 467
468 result = read(dsp, sound, 512); // 8192 468 result = read(dsp, sound, 512); // 8192
469 int j=0; 469 int j=0;
470 470
471 // if(systemZaurus) { 471 // if(systemZaurus) {
472 for (int i = 0; i < result; i++) { //since Z is mono do normally 472 for (int i = 0; i < result; i++) { //since Z is mono do normally
473 monoBuffer[i] = sound[i]; 473 monoBuffer[i] = sound[i];
474 } 474 }
475 475
476 length+=write(wav, monoBuffer, result); 476 length+=write(wav, monoBuffer, result);
477 if(length<0) 477 if(length<0)
478 recording=false; 478 recording=false;
479 479
480 // } else { //ipaq /stereo inputs
481
482
483 // for (int i = 0; i < result; i+=2) { 480 // for (int i = 0; i < result; i+=2) {
484 // monoBuffer[j] = sound[i]; 481 // monoBuffer[j] = sound[i];
485 // // monoBuffer[j] = (sound[i]+sound[i+1])/2; 482 // // monoBuffer[j] = (sound[i]+sound[i+1])/2;
486 483
487 // j++; 484 // j++;
488 // } 485 // }
489
490 // length+=write(wav, monoBuffer, result);
491 // if(length<0)
492 // recording=false;
493 // // length+=write(wav, monoBuffer, result/2);
494 // }
495 qApp->processEvents(); 486 qApp->processEvents();
496 // printf("%d\r",length); 487 // printf("%d\r",length);
497 // fflush(stdout); 488 // fflush(stdout);
498 } 489 }
499 490
500 } else { //AFMT_U8 491 } else { //AFMT_U8
501 // 8bit unsigned 492 // 8bit unsigned
502 unsigned short sound[512], monoBuffer[512]; 493 unsigned short sound[512], monoBuffer[512];
503 while(recording) { 494 while(recording) {
504 result = read(dsp, sound, 512); // 8192 495 result = read(dsp, sound, 512); // 8192
505 int j=0; 496 int j=0;
506 497
507 // if(systemZaurus) { 498 // if(systemZaurus) {
508 499
509 for (int i = 0; i < result; i++) { //since Z is mono do normally 500 for (int i = 0; i < result; i++) { //since Z is mono do normally
510 monoBuffer[i] = sound[i]; 501 monoBuffer[i] = sound[i];
511 } 502 }
512 503
513 length+=write(wav, monoBuffer, result); 504 length+=write(wav, monoBuffer, result);
514 505
515 // } else { //ipaq /stereo inputs
516
517 // for (int i = 0; i < result; i+=2) { 506 // for (int i = 0; i < result; i+=2) {
518 // monoBuffer[j] = (sound[i]+sound[i+1])/2; 507 // monoBuffer[j] = (sound[i]+sound[i+1])/2;
519 // j++; 508 // j++;
520 // } 509 // }
521
522 // length+=write(wav, monoBuffer, result/2); 510 // length+=write(wav, monoBuffer, result/2);
523
524 // if(length<0)
525 // recording=false;
526
527 // }
528 length += result; 511 length += result;
529 // printf("%d\r",length); 512 // printf("%d\r",length);
530 // fflush(stdout); 513 // fflush(stdout);
531 } 514 }
532 515
533 qApp->processEvents(); 516 qApp->processEvents();
534 } 517 }
535 518
536 } else { // 16 bit only capabilities 519 } else { // 16 bit only capabilities
537 520
538 521
539 msg.sprintf("Recording format other"); 522 msg.sprintf("Recording format other");
540 qDebug(msg); 523 qDebug(msg);
541 524
542 signed short sound[512], monoBuffer[512]; 525 signed short sound[512], monoBuffer[512];
543 526
544 while(recording) { 527 while(recording) {
545 528
546 result = read(dsp, sound, 512); // 8192 529 result = read(dsp, sound, 512); // 8192
547 530
548 write(wav, sound, result); 531 write(wav, sound, result);
549 length += result; 532 length += result;
550 if(length<0) { 533 if(length<0) {
551 534
552 recording=false; 535 recording=false;
553 perror("dev/dsp's is a lookin' messy"); 536 perror("dev/dsp's is a lookin' messy");
554 QMessageBox::message("Vmemo"," Done1 recording\n"+ fileName); 537 QMessageBox::message("Vmemo"," Done1 recording\n"+ fileName);
555 } 538 }
556 // printf("%d\r",length); 539 // printf("%d\r",length);
557 // fflush(stdout); 540 // fflush(stdout);
558 qApp->processEvents(); 541 qApp->processEvents();
559 } 542 }
560 // qDebug("file has length of %d lasting %d seconds", 543 // qDebug("file has length of %d lasting %d seconds",
561 // length, (( length / speed) / channels) / 2 ); 544 // length, (( length / speed) / channels) / 2 );
562 // medialplayer states wrong length in secs 545 // medialplayer states wrong length in secs
563 } 546 }
564 547
565 //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<// 548 //>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<//
566 549
567 value = length+36; 550 value = length+36;
568 551
569 lseek(wav, 4, SEEK_SET); 552 lseek(wav, 4, SEEK_SET);
570 write(wav, &value, 4); 553 write(wav, &value, 4);
571 lseek(wav, 40, SEEK_SET); 554 lseek(wav, 40, SEEK_SET);
572 555
573 write(wav, &length, 4); 556 write(wav, &length, 4);
574 557
575 track.close(); 558 track.close();
576 qDebug("Tracvk closed"); 559 qDebug("Tracvk closed");
577 560
578 if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1) 561 if( ioctl( dsp, SNDCTL_DSP_RESET,0) == -1)
579 perror("ioctl(\"SNDCTL_DSP_RESET\")"); 562 perror("ioctl(\"SNDCTL_DSP_RESET\")");
580 563
581 ::close(dsp); 564 ::close(dsp);
582 fileName = fileName.left(fileName.length()-4); 565 fileName = fileName.left(fileName.length()-4);
583 // if(useAlerts) 566 // if(useAlerts)
584 // QMessageBox::message("Vmemo"," Done1 recording\n"+ fileName); 567 // QMessageBox::message("Vmemo"," Done1 recording\n"+ fileName);
585 qDebug("done recording "+fileName); 568 qDebug("done recording "+fileName);
586 QSound::play(Resource::findSound("vmemoe")); 569 QSound::play(Resource::findSound("vmemoe"));
587 570
588 Config cfg("qpe"); 571 Config cfg("qpe");
589 cfg.setGroup("Volume"); 572 cfg.setGroup("Volume");
590 QString foo = cfg.readEntry("Mute","TRUE"); 573 QString foo = cfg.readEntry("Mute","TRUE");
591 if(foo.find("TRUE",0,TRUE) != -1) 574 if(foo.find("TRUE",0,TRUE) != -1)
592 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE; //mute 575 QCopEnvelope( "QPE/System", "volumeChange(bool)" ) << TRUE; //mute
593 576
594} 577}
595 578
596int VMemo::setToggleButton(int tog) { 579int VMemo::setToggleButton(int tog) {
597 580
598 for( int i=0; i < 10;i++) { 581 for( int i=0; i < 10;i++) {
599 switch (tog) { 582 switch (tog) {
600 case 0: 583 case 0:
601 return -1; 584 return -1;
602 break; 585 break;
603 case 1: 586 case 1:
604 return 0; 587 return 0;
605 break; 588 break;
606 case 2: 589 case 2:
607 return Key_Escape; 590 return Key_Escape;
608 break; 591 break;
609 case 3: 592 case 3:
610 return Key_Space; 593 return Key_Space;
611 break; 594 break;
612 case 4: 595 case 4:
613 return Key_F12; 596 return Key_F12;
614 break; 597 break;
615 case 5: 598 case 5:
616 return Key_F9; 599 return Key_F9;
617 break; 600 break;
618 case 6: 601 case 6:
619 return Key_F10; 602 return Key_F10;
620 break; 603 break;
621 case 7: 604 case 7:
622 return Key_F11; 605 return Key_F11;
623 break; 606 break;
624 case 8: 607 case 8:
625 return Key_F13; 608 return Key_F13;
626 break; 609 break;
627 }; 610 };
628 } 611 }
629 return -1; 612 return -1;
630} 613}