(no commit message)
[quassel.git] / core / core.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel Team                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "core.h"
22 #include "server.h"
23 #include "global.h"
24 #include "coreproxy.h"
25
26 #include <QSettings>
27
28 Core::Core() {
29   if(core) qFatal("Trying to instantiate more than one Core object!");
30
31   connect(coreProxy, SIGNAL(gsRequestConnect(QString, quint16)), this, SLOT(connectToIrc(QString, quint16)));
32   connect(coreProxy, SIGNAL(gsUserInput(QString)), this, SLOT(inputLine(QString)));
33
34   connect(&server, SIGNAL(recvLine(QString)), coreProxy, SLOT(csCoreMessage(QString)));
35
36   // Read global settings from config file 
37   QSettings s;
38   s.beginGroup("Global");
39   QString key;
40   foreach(key, s.childKeys()) {
41     global->updateData(key, s.value(key));
42   }
43   global->updateData("CoreReady", true);
44   // Now that we are in sync, we can connect signals to automatically store further updates.
45   // I don't think we care if global data changed locally or if it was updated by a client. 
46   connect(global, SIGNAL(dataUpdatedRemotely(QString)), SLOT(globalDataUpdated(QString)));
47   connect(global, SIGNAL(dataPutLocally(QString)), SLOT(globalDataUpdated(QString)));
48
49   server.start();
50 }
51
52 void Core::connectToIrc(const QString &h, quint16 port) {
53   if(server.isConnected()) return;
54   qDebug() << "Core: Connecting to " << h << ":" << port;
55   server.connectToIrc(h, port);
56 }
57
58 void Core::inputLine(QString s) {
59   server.putRawLine(s);
60
61 }
62
63 void Core::globalDataUpdated(QString key) {
64   QVariant data = global->getData(key);
65   QSettings s;
66   s.setValue(QString("Global/")+key, data);
67 }
68
69 Core *core = 0;