2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
|
|
|
// Copyright (C) 2001-2015 David Capello
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
|
|
// published by the Free Software Foundation.
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-09-19 07:57:02 +08:00
|
|
|
#include "config.h"
|
2013-08-06 08:20:19 +08:00
|
|
|
#endif
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/modules.h"
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
#include "app/modules/gui.h"
|
|
|
|
#include "app/modules/palettes.h"
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2013-08-06 08:20:19 +08:00
|
|
|
namespace app {
|
|
|
|
|
|
|
|
struct Module {
|
2007-09-19 07:57:02 +08:00
|
|
|
const char *name;
|
2008-10-01 09:27:51 +08:00
|
|
|
int (*init)();
|
|
|
|
void (*exit)();
|
2007-09-19 07:57:02 +08:00
|
|
|
int reqs;
|
2009-10-14 22:09:59 +08:00
|
|
|
bool installed;
|
2013-08-06 08:20:19 +08:00
|
|
|
};
|
2007-09-19 07:57:02 +08:00
|
|
|
|
|
|
|
static Module module[] =
|
|
|
|
{
|
2013-08-06 08:20:19 +08:00
|
|
|
#define DEF_MODULE(name, reqs) \
|
|
|
|
{ #name, init_module_##name, exit_module_##name, (reqs), false }
|
|
|
|
|
|
|
|
// This sorting is very important because last modules depend of
|
|
|
|
// first ones.
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2012-01-06 06:45:03 +08:00
|
|
|
DEF_MODULE(palette, 0),
|
|
|
|
DEF_MODULE(gui, REQUIRE_INTERFACE),
|
2007-09-19 07:57:02 +08:00
|
|
|
};
|
|
|
|
|
2007-09-20 08:32:35 +08:00
|
|
|
static int modules = sizeof(module) / sizeof(Module);
|
2007-09-19 07:57:02 +08:00
|
|
|
|
2010-01-29 11:15:33 +08:00
|
|
|
LegacyModules::LegacyModules(int requirements)
|
2007-09-19 07:57:02 +08:00
|
|
|
{
|
2009-08-05 09:53:02 +08:00
|
|
|
for (int c=0; c<modules; c++)
|
2009-10-14 22:09:59 +08:00
|
|
|
if ((module[c].reqs & requirements) == module[c].reqs) {
|
2015-08-29 07:48:49 +08:00
|
|
|
LOG("Installing module: %s\n", module[c].name);
|
2009-08-05 09:53:02 +08:00
|
|
|
|
2007-09-20 08:32:35 +08:00
|
|
|
if ((*module[c].init)() < 0)
|
2012-01-06 06:45:03 +08:00
|
|
|
throw base::Exception("Error initializing module: %s",
|
|
|
|
static_cast<const char*>(module[c].name));
|
2008-02-04 10:37:26 +08:00
|
|
|
|
2009-10-14 22:09:59 +08:00
|
|
|
module[c].installed = true;
|
2007-09-19 07:57:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-29 11:15:33 +08:00
|
|
|
LegacyModules::~LegacyModules()
|
2007-09-19 07:57:02 +08:00
|
|
|
{
|
2009-08-05 09:53:02 +08:00
|
|
|
for (int c=modules-1; c>=0; c--)
|
2007-09-19 07:57:02 +08:00
|
|
|
if (module[c].installed) {
|
2015-08-29 07:48:49 +08:00
|
|
|
LOG("Unstalling module: %s\n", module[c].name);
|
2007-09-20 08:32:35 +08:00
|
|
|
(*module[c].exit)();
|
2009-10-14 22:09:59 +08:00
|
|
|
module[c].installed = false;
|
2007-09-19 07:57:02 +08:00
|
|
|
}
|
|
|
|
}
|
2013-08-06 08:20:19 +08:00
|
|
|
|
|
|
|
} // namespace app
|