summaryrefslogtreecommitdiffstats
path: root/plugins/arena/kross/SigenArenaKross.cpp
blob: e9d4b21e050299612e5847be83950407d122d78f (plain)
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
/*
 * Copyright 2009 Ben Boeckel <MathStuf@gmail.com>
 * 
 * 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 3 of the License, 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.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

// Header include
#include "SigenArenaKross.h"

// Sigencore includes
#include <sigencore/Arena.h>

// KDE includes
#include <KIcon>
#include <KServiceTypeTrader>
#include <kross/core/manager.h>

SIGEN_ARENA_PLUGIN(SigenArenaKross, "sigen_arena_kross")

using namespace Sigscript;
using namespace Sigencore;
using namespace Sigencore::Plugins;

SigenArenaKross::SigenArenaKross(QObject* parent, const QVariantList& args) :
        ArenaPlugin(parent, args)
{
    KService::List services;
    QStringList interpreterQueries;
    const QStringList interpreters = Kross::Manager::self().interpreters();
    foreach (const QString& interpreter, interpreters)
        interpreterQueries.append(QString("([X-Sigen-Kross-Interpreter] == %1)").arg(interpreter));
    if (interpreterQueries.size())
        services = KServiceTypeTrader::self()->query("Sigen/Arena/Kross", QString("([X-Sigen-Kross-ApiVersion] == 0) and (%1)").arg(interpreterQueries.join(" or ")));
    foreach (KService::Ptr service, services)
        m_scripts[service->name()] = service;
}

SigenArenaKross::~SigenArenaKross()
{
}

QStringList SigenArenaKross::classList() const
{
    return m_scripts.keys();
}

QString SigenArenaKross::description(const QString& name) const
{
    if (m_scripts.contains(name))
        return m_scripts[name]->comment();
    return "(Unknown arena)";
}

QIcon SigenArenaKross::icon(const QString& name) const
{
    if (m_scripts.contains(name))
        return KIcon(m_scripts[name]->icon());
    return KIcon();
}

QStringList SigenArenaKross::extensions(const QString& name) const
{
}

Arena* SigenArenaKross::createArena(const QString& name, GameWrapper* game, Config* parent)
{
    return NULL;
}

void SigenArenaKross::cleanupArena(Arena* arena)
{
}