aseprite/src/app/modules.cpp

67 lines
1.4 KiB
C++
Raw Normal View History

2015-02-12 15:16:25 +00:00
// Aseprite
// Copyright (C) 2001-2018 David Capello
2015-02-12 15:16:25 +00:00
//
2016-08-26 20:02:58 +00:00
// This program is distributed under the terms of
// the End-User License Agreement for Aseprite.
2007-09-18 23:57:02 +00:00
#ifdef HAVE_CONFIG_H
2007-09-18 23:57:02 +00:00
#include "config.h"
#endif
2007-09-18 23:57:02 +00:00
#include "app/modules.h"
2007-09-18 23:57:02 +00:00
#include "app/modules/gui.h"
#include "app/modules/palettes.h"
2007-09-18 23:57:02 +00:00
namespace app {
struct Module {
2007-09-18 23:57:02 +00:00
const char *name;
int (*init)();
void (*exit)();
2007-09-18 23:57:02 +00:00
int reqs;
bool installed;
};
2007-09-18 23:57:02 +00:00
static Module module[] =
{
#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-18 23:57:02 +00:00
DEF_MODULE(palette, 0),
#ifdef ENABLE_UI
DEF_MODULE(gui, REQUIRE_INTERFACE),
#endif
2007-09-18 23:57:02 +00:00
};
static int modules = sizeof(module) / sizeof(Module);
2007-09-18 23:57:02 +00:00
2010-01-29 03:15:33 +00:00
LegacyModules::LegacyModules(int requirements)
2007-09-18 23:57:02 +00:00
{
for (int c=0; c<modules; c++)
if ((module[c].reqs & requirements) == module[c].reqs) {
2016-10-27 15:25:33 +00:00
LOG("MODS: Installing module: %s\n", module[c].name);
if ((*module[c].init)() < 0)
throw base::Exception("Error initializing module: %s",
static_cast<const char*>(module[c].name));
module[c].installed = true;
2007-09-18 23:57:02 +00:00
}
}
2010-01-29 03:15:33 +00:00
LegacyModules::~LegacyModules()
2007-09-18 23:57:02 +00:00
{
for (int c=modules-1; c>=0; c--)
2007-09-18 23:57:02 +00:00
if (module[c].installed) {
2016-10-27 15:25:33 +00:00
LOG("MODS: Unstalling module: %s\n", module[c].name);
(*module[c].exit)();
module[c].installed = false;
2007-09-18 23:57:02 +00:00
}
}
} // namespace app