File: specifications.cpp

package info (click to toggle)
attal 0.9.2-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,992 kB
  • ctags: 5,972
  • sloc: cpp: 44,510; sh: 160; makefile: 45
file content (254 lines) | stat: -rw-r--r-- 5,640 bytes parent folder | download | duplicates (2)
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
/****************************************************************
**
** Attal : Lords of Doom
**
** template.cpp
** this is a template for all .cpp files
**
** Version : $Id: specifications.cpp,v 1.2 2003/09/27 10:29:01 audoux Exp $
**
** Author(s) : Pascal Audoux
**
** Date : 05/01/2002
**
** Licence :    
**	This program is free software; you can redistribute it and/or modify
**   	it under the terms of the GNU General Public License as published by
**     	the Free Software Foundation; either version 2, or (at your option)
**      any later version.
**
**	This program is distributed in the hope that it will be useful,
** 	but WITHOUT ANY WARRANTY; without even the implied warranty of
**	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
**	GNU General Public License for more details.
**
****************************************************************/

#include "specifications.h"

// generic include files
// include files for QT

// application specific include files
#include "libCommon/log.h"

extern QString DATA_PATH;

//
// ----- Specifications -----
//

Specifications::Specifications()
{
	_listArtefacts.setAutoDelete( true );
}

bool Specifications::init()
{
	clear();
	SpecificationsHandler handler( this );
	QFile file( DATA_PATH + "specifications.dat" );
	QXmlInputSource source( file );
	QXmlSimpleReader reader;
	reader.setContentHandler( &handler );
	reader.setErrorHandler( &handler );
	bool ok = reader.parse( source );
	file.close();
	if ( !ok ) {
		logEE( "Parse Error (%s) : %s", QString( DATA_PATH + "specifications.dat" ).latin1(), handler.errorProtocol().latin1() );
		return false;
	}

	return true;
}

void Specifications::clear()
{
	_listArtefacts.clear();
}

void Specifications::save()
{
	logDD("Not yet implemented.");
}


void Specifications::add( SpecificationArtefact * artefact )
{
	_listArtefacts.append( artefact );
}

uint Specifications::getArtefactNumber()
{
	return _listArtefacts.count();
}

SpecificationArtefact * Specifications::getArtefact( uint num )
{
	SpecificationArtefact * ret = 0;

	if( num < _listArtefacts.count() ) {
		ret = _listArtefacts.at( num );
	}

	return ret;
}

//
// ----- SpecificationArtefact -----
//

SpecificationArtefact::SpecificationArtefact()
{
	_x = 0;
	_y = 0;
	_name = "";
	_type = 0;
}


//
// ----- SpecificationsHandler -----
//

SpecificationsHandler::SpecificationsHandler( Specifications * spec )
{
	_spec = spec;
}

bool SpecificationsHandler::startDocument()
{
	// at the beginning of parsing: do some initialization
	_errorProt = "";
	_spec->clear();
	_state = StateInit;
	return true;
}

bool SpecificationsHandler::startElement( const QString& namespaceURI, const QString& localName, const QString& qName, const QXmlAttributes& atts )
{
	if( qName == "specifications" && _state == StateInit ) {
		_state = StateDocument;
	} else if ( qName == "artefact" && _state == StateDocument ) {
		_state = StateArtefact;
		_stateArtefact = StateInitArtefact;
		_artefact = new SpecificationArtefact();
	} else if( _state == StateArtefact ) {
		startElementArtefact( namespaceURI, localName, qName, atts );
	} else {
		// error
		return false;
	}
	return true;
}

bool SpecificationsHandler::startElementArtefact( const QString &, const QString &, const QString & qName, const QXmlAttributes & )
{
	if( qName == "x" && _stateArtefact == StateInitArtefact ) {
		_stateArtefact = StateX;
	} else if ( qName == "y" && _stateArtefact == StateInitArtefact ) {
		_stateArtefact = StateY;
	} else if ( qName == "type" && _stateArtefact == StateInitArtefact ) {
		_stateArtefact = StateType;
	} else if ( qName == "name" && _stateArtefact == StateInitArtefact ) {
		_stateArtefact = StateName;
	} else {
		// error
		return false;
	}
	return true;
}

bool SpecificationsHandler::endElement( const QString & namespaceURI, const QString & localName, const QString & qName )
{
	switch ( _state ) {
	case StateDocument:
		_state = StateInit;
		break;
	case StateArtefact:
		endElementArtefact( namespaceURI, localName, qName );
		break;
	default:
	    // do nothing
	    break;
    }
    return true;
}

bool SpecificationsHandler::endElementArtefact( const QString &, const QString &, const QString & )
{
	switch( _stateArtefact ) {
	case StateInitArtefact:
		_spec->add( _artefact );
		_state = StateDocument;
		break;
	case StateType:
		_stateArtefact = StateInitArtefact;
		break;
	case StateX:
		_stateArtefact = StateInitArtefact;
		break;
	case StateY:
		_stateArtefact = StateInitArtefact;
		break;
	case StateName:
		_stateArtefact = StateInitArtefact;
		break;
	default:
	    // do nothing
	    break;
    }
    return true;
}

bool SpecificationsHandler::characters( const QString& ch )
{
	QString ch_simplified = ch.simplifyWhiteSpace();
	if ( ch_simplified.isEmpty() )
		return true;

	switch( _state ) {
	case StateArtefact:
		return charactersArtefact( ch_simplified );
		break;
	default:
	    return false;
    }

    return true;
}

bool SpecificationsHandler::charactersArtefact( const QString& ch )
{
	switch( _stateArtefact ) {
	case StateX:
		_artefact->setX( ch.toInt() );
		break;
	case StateY:
		_artefact->setY( ch.toInt() );
		break;
	case StateType:
		_artefact->setType( ch.toInt() );
		break;
	case StateName:
		_artefact->setName( ch );
		break;
	default:
	    return false;
    }

    return true;
}


bool SpecificationsHandler::fatalError( const QXmlParseException& exception )
{
    _errorProt += QString( "fatal parsing error: %1 in line %2, column %3\n" )
	.arg( exception.message() )
	.arg( exception.lineNumber() )
	.arg( exception.columnNumber() );

    return QXmlDefaultHandler::fatalError( exception );
}