source: tspsg/src/tspmodel.cpp @ e96fad3079

0.1.3.145-beta1-symbian0.1.4.170-beta2-bb10appveyorimgbotreadme
Last change on this file since e96fad3079 was e96fad3079, checked in by Oleksii Serdiuk, 15 years ago

Explicit braces to avoid ambiguous ‘else’.

  • Property mode set to 100644
File size: 10.2 KB
Line 
1/*
2 *  TSPSG: TSP Solver and Generator
3 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
4 *
5 *  $Id$
6 *  $URL$
7 *
8 *  This file is part of TSPSG.
9 *
10 *  TSPSG is free software: you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License as published by
12 *  the Free Software Foundation, either version 3 of the License, or
13 *  (at your option) any later version.
14 *
15 *  TSPSG is distributed in the hope that it will be useful,
16 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 *  GNU General Public License for more details.
19 *
20 *  You should have received a copy of the GNU General Public License
21 *  along with TSPSG.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#include "tspmodel.h"
25
26CTSPModel::CTSPModel(QObject *parent)
27        : QAbstractTableModel(parent), nCities(0)
28{
29        settings = new QSettings(QSettings::IniFormat,QSettings::UserScope,"TSPSG","tspsg");
30}
31
32inline int CTSPModel::rand(int min, int max) const
33{
34        return min + (int)(((float)qrand() / RAND_MAX) * max);
35}
36
37int CTSPModel::rowCount(const QModelIndex &) const
38{
39        return nCities;
40}
41
42int CTSPModel::columnCount(const QModelIndex &) const
43{
44        return nCities;
45}
46
47QVariant CTSPModel::headerData(int section, Qt::Orientation orientation, int role) const
48{
49        if (role == Qt::DisplayRole) {
50                if (orientation == Qt::Vertical)
51                        return trUtf8("City %1").arg(section + 1);
52                else
53                        return trUtf8("%1").arg(section + 1);
54        }
55        return QVariant();
56}
57
58QVariant CTSPModel::data(const QModelIndex &index, int role) const
59{
60        if (!index.isValid())
61                return QVariant();
62        if (role == Qt::TextAlignmentRole)
63                return int(Qt::AlignCenter);
64        else if (role == Qt::FontRole) {
65QFont font;
66                font.setBold(true);
67                return font;
68        } else if (role == Qt::DisplayRole || role == Qt::EditRole) {
69                if (index.row() < nCities && index.column() < nCities)
70                        if (table[index.row()][index.column()] == INFINITY)
71                                return trUtf8(INFSTR);
72                        else
73                                // HACK: Converting to string to prevent spinbox in edit mode
74                                return QVariant(table[index.row()][index.column()]).toString();
75                else
76                        return QVariant();
77        } else if (role == Qt::UserRole)
78                return table[index.row()][index.column()];
79        return QVariant();
80}
81
82bool CTSPModel::setData(const QModelIndex &index, const QVariant &value, int role)
83{
84        if (!index.isValid())
85                return false;
86        if (role == Qt::EditRole && index.row() != index.column()) {
87                if (value.toString().compare(INFSTR) == 0)
88                        table[index.row()][index.column()] = INFINITY;
89                else {
90bool ok;
91double tmp = value.toDouble(&ok);
92                        if (!ok || tmp < 0)
93                                return false;
94                        else
95                                table[index.row()][index.column()] = tmp;
96                }
97                emit dataChanged(index,index);
98                return true;
99        }
100        return false;
101}
102
103Qt::ItemFlags CTSPModel::flags(const QModelIndex &index) const
104{
105Qt::ItemFlags flags = QAbstractItemModel::flags(index);
106        if (index.row() != index.column())
107                flags |= Qt::ItemIsEditable;
108        return flags;
109}
110
111quint16 CTSPModel::numCities() const
112{
113        return nCities;
114}
115
116void CTSPModel::setNumCities(int n)
117{
118        if (n == nCities)
119                return;
120        emit layoutAboutToBeChanged();
121        table.resize(n);
122        for (int k = 0; k < n; k++) {
123                table[k].resize(n);
124        }
125        if (n > nCities)
126                for (int k = nCities; k < n; k++)
127                        table[k][k] = INFINITY;
128        nCities = n;
129        emit layoutChanged();
130}
131
132void CTSPModel::clear()
133{
134        for (int r = 0; r < nCities; r++)
135                for (int c = 0; c < nCities; c++)
136                        if (r != c)
137                                table[r][c] = 0;
138        emit dataChanged(index(0,0),index(nCities - 1,nCities - 1));
139}
140
141inline bool CTSPModel::loadError(QDataStream::Status status)
142{
143QString err;
144        if (status == QDataStream::Ok)
145                return false;
146        else if (status == QDataStream::ReadPastEnd)
147                err = trUtf8("Unexpected end of file.");
148        else if (status == QDataStream::ReadCorruptData)
149                err = trUtf8("Corrupt data read. File possibly corrupted.");
150        else
151                err = trUtf8("Unknown error.");
152        QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + err,QMessageBox::Ok).exec();
153        return true;
154}
155
156bool CTSPModel::loadTask(QString fname)
157{
158QFile f(fname);
159        if (!f.open(QIODevice::ReadOnly)) {
160                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),QString(trUtf8("Unable to open task file.\nError: %1")).arg(f.errorString()),QMessageBox::Ok).exec();
161                return false;
162        }
163QDataStream ds(&f);
164        ds.setVersion(QDataStream::Qt_4_4);
165quint32 sig;
166        ds >> sig;
167        if (loadError(ds.status()))
168                return false;
169        ds.device()->reset();
170        if (sig == TSPT) {
171                if (!loadTSPT(&ds)) {
172                        f.close();
173                        return false;
174                }
175        } else if ((sig >> 16) == ZKT) {
176                if (!loadZKT(&ds)) {
177                        f.close();
178                        return false;
179                }
180        } else {
181                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + trUtf8("Unknown file format or file is corrupted."),QMessageBox::Ok).exec();
182                f.close();
183                return false;
184        }
185        f.close();
186        return true;
187}
188
189bool CTSPModel::loadTSPT(QDataStream *ds)
190{
191        // Skipping signature
192        ds->skipRawData(sizeof(TSPT));
193        if (loadError(ds->status()))
194                return false;
195        // File version
196quint8 version;
197        *ds >> version;
198        if (loadError(ds->status()))
199                return false;
200        if (version > TSPT_VERSION) {
201                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + trUtf8("File version is newer than application supports.\nPlease, try to update application."),QMessageBox::Ok).exec();
202                return false;
203        }
204        // Skipping metadata
205        ds->skipRawData(TSPT_META_SIZE);
206        if (loadError(ds->status()))
207                return false;
208        // Cities number
209quint16 size;
210        *ds >> size;
211        if (loadError(ds->status()))
212                return false;
213        if (size < 3) {
214                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + trUtf8("Unexpected data read.\nFile is possibly corrupted."),QMessageBox::Ok).exec();
215                return false;
216        }
217        if (nCities != size)
218                emit numCitiesChanged(size);
219        // Costs
220        for (int r = 0; r < size; r++)
221                for (int c = 0; c < size; c++)
222                        if (r != c) {
223                                *ds >> table[r][c];
224                                if (loadError(ds->status())) {
225                                        clear();
226                                        return false;
227                                }
228                        }
229        emit dataChanged(index(0,0),index(nCities - 1,nCities - 1));
230        return true;
231}
232
233bool CTSPModel::loadZKT(QDataStream *ds)
234{
235        // Skipping signature
236        ds->skipRawData(sizeof(ZKT));
237        if (loadError(ds->status()))
238                return false;
239        // File version
240quint16 version;
241        ds->readRawData(reinterpret_cast<char *>(&version),2);
242        if (loadError(ds->status()))
243                return false;
244        if (version > ZKT_VERSION) {
245                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + trUtf8("File version is newer than application supports.\nPlease, try to update application."),QMessageBox::Ok).exec();
246                return false;
247        }
248        // Cities number
249quint8 size;
250        ds->readRawData(reinterpret_cast<char *>(&size),1);
251        if (loadError(ds->status()))
252                return false;
253        if ((size < 3) || (size > 5)) {
254                QMessageBox(QMessageBox::Critical,trUtf8("Task Load"),trUtf8("Unable to load task:") + "\n" + trUtf8("Unexpected data read.\nFile is possibly corrupted."),QMessageBox::Ok).exec();
255                return false;
256        }
257        if (nCities != size)
258                emit numCitiesChanged(size);
259        // Costs
260double val;
261        for (int r = 0; r < 5; r++)
262                for (int c = 0; c < 5; c++)
263                        if ((r != c) && (r < size)) {
264                                ds->readRawData(reinterpret_cast<char *>(&val),8);
265                                if (loadError(ds->status())) {
266                                        clear();
267                                        return false;
268                                }
269                                table[r][c] = val;
270                        } else {
271                                ds->skipRawData(8);
272                                if (loadError(ds->status())) {
273                                        clear();
274                                        return false;
275                                }
276                        }
277        emit dataChanged(index(0,0),index(nCities - 1,nCities - 1));
278        return true;
279}
280
281bool CTSPModel::saveTask(QString fname)
282{
283QFile f(fname);
284        if (!f.open(QIODevice::WriteOnly)) {
285                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),QString(trUtf8("Unable to create task file.\nError: %1\nMaybe, file is read-only?")).arg(f.errorString()),QMessageBox::Ok).exec();
286                return false;
287        }
288QDataStream ds(&f);
289        ds.setVersion(QDataStream::Qt_4_4);
290        if (f.error() != QFile::NoError) {
291                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
292                f.close();
293                return false;
294        }
295        // File signature
296        ds << TSPT;
297        if (f.error() != QFile::NoError) {
298                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
299                f.close();
300                return false;
301        }
302        // File version
303        ds << TSPT_VERSION;
304        if (f.error() != QFile::NoError) {
305                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
306                f.close();
307                return false;
308        }
309        // File metadata version
310        ds << TSPT_META_VERSION;
311        if (f.error() != QFile::NoError) {
312                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
313                f.close();
314                return false;
315        }
316        // Metadata
317        ds << OSID;
318        if (f.error() != QFile::NoError) {
319                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
320                f.close();
321                return false;
322        }
323        // Number of cities
324        ds << nCities;
325        if (f.error() != QFile::NoError) {
326                QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
327                f.close();
328                return false;
329        }
330        // Costs
331        for (int r = 0; r < nCities; r++)
332                for (int c = 0; c < nCities; c++)
333                        if (r != c) {
334                                ds << table[r][c];
335                                if (f.error() != QFile::NoError) {
336                                        QMessageBox(QMessageBox::Critical,trUtf8("Task Save"),trUtf8("Unable to save task.\nError: %1").arg(f.errorString()),QMessageBox::Ok).exec();
337                                        f.close();
338                                        return false;
339                                }
340                        }
341        f.close();
342        return true;
343}
344
345void CTSPModel::randomize()
346{
347int randMin = settings->value("MinCost",DEF_RAND_MIN).toInt();
348int randMax = settings->value("MaxCost",DEF_RAND_MAX).toInt();
349        for (int r = 0; r < nCities; r++)
350                for (int c = 0; c < nCities; c++)
351                        if (r != c)
352                                table[r][c] = rand(randMin,randMax);
353        emit dataChanged(index(0,0),index(nCities - 1,nCities - 1));
354}
Note: See TracBrowser for help on using the repository browser.