6270527f6930ab6ea6c8791ac133dd0ffbf448e9
[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(QStringList)), this, SLOT(connectToIrc(QStringList)));
32   connect(coreProxy, SIGNAL(gsUserInput(QString, QString, QString)), this, SIGNAL(msgFromGUI(QString, QString, QString)));
33   connect(this, SIGNAL(sendMessage(QString, QString, Message)), coreProxy, SLOT(csSendMessage(QString, QString, Message)));
34   connect(this, SIGNAL(sendStatusMsg(QString, QString)), coreProxy, SLOT(csSendStatusMsg(QString, 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 }
50
51 void Core::globalDataUpdated(QString key) {
52   QVariant data = global->getData(key);
53   QSettings s;
54   s.setValue(QString("Global/")+key, data);
55 }
56
57 void Core::connectToIrc(QStringList networks) {
58   foreach(QString net, networks) {
59     if(servers.contains(net)) {
60
61     } else {
62       Server *server = new Server(net);
63       connect(this, SIGNAL(connectToIrc(QString)), server, SLOT(connectToIrc(QString)));
64       connect(this, SIGNAL(disconnectFromIrc(QString)), server, SLOT(disconnectFromIrc(QString)));
65       connect(this, SIGNAL(msgFromGUI(QString, QString, QString)), server, SLOT(userInput(QString, QString, QString)));
66       connect(server, SIGNAL(sendMessage(QString, Message)), this, SLOT(recvMessageFromServer(QString, Message)));
67       connect(server, SIGNAL(sendStatusMsg(QString)), this, SLOT(recvStatusMsgFromServer(QString)));
68       connect(server, SIGNAL(setTopic(QString, QString, QString)), coreProxy, SLOT(csSetTopic(QString, QString, QString)));
69       connect(server, SIGNAL(setNicks(QString, QString, QStringList)), coreProxy, SLOT(csSetNicks(QString, QString, QStringList)));
70       // add error handling
71
72       server->start();
73       servers[net] = server;
74     }
75     emit connectToIrc(net);
76   }
77 }
78
79 void Core::recvMessageFromServer(QString buf, Message msg) {
80   Q_ASSERT(sender());
81   QString net = qobject_cast<Server*>(sender())->getNetwork();
82   emit sendMessage(net, buf, msg);
83 }
84
85 void Core::recvStatusMsgFromServer(QString msg) {
86   Q_ASSERT(sender());
87   QString net = qobject_cast<Server*>(sender())->getNetwork();
88   emit sendStatusMsg(net, msg);
89 }
90
91
92 Core *core = 0;