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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
* COPYRIGHT
*
* librnd - ringdove EDA lib
* Copyright (C) 2020,2021 Tibor 'Igor2' Palinkas
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 31 Milk Street, # 960789 Boston, MA 02196 USA.
*
* Contact:
* Project page: http://repo.hu/projects/foobar
* lead developer: http://repo.hu/projects/foobar/contact.html
* mailing list: foobar (at) list.repo.hu (send "subscribe")
*/
/* the app is called foobar - replace foobar and FOOBAR with your app name */
#include <stdlib.h>
#include <puplug/libs.h>
/* librnd headers */
#include <librnd/core/unit.h>
#include <librnd/hid/hid_init.h>
#include <librnd/hid/hid.h>
#include <librnd/core/conf.h>
#include <librnd/hid/buildin.hidlib.h>
#include <librnd/core/compat_misc.h>
#include <librnd/core/plugins.h>
/* local (app) headers */
/*#include "data.h"*/
#define pup_buildins foobar_buildins
/*#include "foobar-buildin.c" ; temporary replacement for compiling this test code: */ const pup_buildin_t foobar_buildins[] = { NULL };
#undef pup_buildins
extern const pup_buildin_t pup_buildins[];
static const char *menu_file_paths[] = { "./", "~/.foobar/", NULL };
#define FOOBAR_VERSION "1.0.0"
#define FOOBARSHAREDIR "/usr/share/foobar"
#define CONF_USER_DIR "~/.foobar"
/*** the data model ***/
#include <librnd/core/hidlib.h>
struct {
rnd_design_t hidlib;
int whatever_data;
} foobar;
/*** crosshair ***/
#include <librnd/hid/hid_inlines.h>
#include <librnd/core/rnd_conf.h>
rnd_hid_gc_t foobar_crosshair_gc;
void foobar_crosshair_gui_init(void)
{
foobar_crosshair_gc = rnd_hid_make_gc();
rnd_hid_set_draw_xor(foobar_crosshair_gc, 1);
foobar.hidlib.grid = rnd_conf.editor.grid;
}
void foobar_crosshair_gui_uninit(void)
{
rnd_hid_destroy_gc(foobar_crosshair_gc);
}
static void my_draw_attached(rnd_design_t *hidlib, rnd_bool inhibit_drawing_mode)
{
rnd_render->set_drawing_mode(rnd_render, RND_HID_COMP_RESET, 1, NULL);
rnd_render->set_drawing_mode(rnd_render, RND_HID_COMP_POSITIVE_XOR, 1, NULL);
/* rnd_render->set_color(foobar_crosshair_gc, &conf_core.appearance.color.attached);*/
/* foobar_tool_draw_attached(hidlib);*/
rnd_render->set_drawing_mode(rnd_render, RND_HID_COMP_FLUSH, 1, NULL);
}
static void my_crosshair_move_to(rnd_design_t *hl, rnd_coord_t abs_x, rnd_coord_t abs_y, int mouse_mot)
{
/* do the grid fit/snap then: update the GUI */
rnd_hid_notify_crosshair_change(hl, rnd_false);
rnd_gui->set_crosshair(rnd_gui, abs_x, abs_y, 0);
/* rnd_tool_adjust_attached(hl);*/
rnd_hid_notify_crosshair_change(hl, rnd_true);
}
/*** gui support ***/
static void gui_support_plugins(int load)
{
static int loaded = 0;
static pup_plugin_t *puphand;
if (load && !loaded) {
static const char *plugin_name = "foobar-dialogs";
int state = 0;
loaded = 1;
rnd_message(RND_MSG_DEBUG, "Loading GUI support plugin: '%s'\n", plugin_name);
puphand = pup_load(&rnd_pup, (const char **)rnd_pup_paths, plugin_name, 0, &state);
if (puphand == NULL)
rnd_message(RND_MSG_ERROR, "Error: failed to load GUI support plugin '%s'\n-> expect missing widgets and dialog boxes\n", plugin_name);
}
if (!load && loaded && (puphand != NULL)) {
pup_unload(&rnd_pup, puphand, NULL);
loaded = 0;
puphand = NULL;
}
}
/* action table number of columns for a single action */
static const char *foobar_action_args[] = {
/*short, -long, action, help, hint-on-error */
NULL, "-show-actions", "PrintActions()", "Print all available actions (human readable) and exit", NULL,
NULL, "-dump-actions", "DumpActions()", "Print all available actions (script readable) and exit", NULL,
NULL, "-dump-plugins", "DumpPlugins()", "Print all available plugins (script readable) and exit", NULL,
NULL, "-dump-plugindirs", "DumpPluginDirs()", "Print directories plugins might be loaded from and exit", NULL,
NULL, "-dump-oflags", "DumpObjFlags()", "Print object flags and exit", NULL,
NULL, "-show-paths", "PrintPaths()", "Print all configured paths and exit", NULL,
"V", "-version", "PrintVersion()", "Print version info and exit", NULL,
"V", "-dump-version", "DumpVersion()", "Print version info in script readable format and exit", NULL,
NULL, "-copyright", "PrintCopyright()", "Print copyright and exit", NULL,
NULL, NULL, NULL, NULL, NULL /* terminator */
};
static void foobar_main_uninit(void)
{
gui_support_plugins(0);
}
static void foobar_main_init(void)
{
}
void conf_core_init()
{
/* TODO: in foobar this should be coming from generated and included from conf_core.[ch] */
}
int main(int argc, char *argv[])
{
int n;
rnd_main_args_t ga;
rnd_app.package = "foobar";
rnd_app.version = FOOBAR_VERSION;
rnd_app.url = "http://repo.hu/projects/foobar";
rnd_app.default_embedded_menu = "";
rnd_app.menu_file_paths = menu_file_paths;
rnd_app.menu_name_fmt = "foobar-menu.lht";
rnd_app.conf_userdir_path = CONF_USER_DIR;
rnd_app.conf_user_path = CONF_USER_DIR "/foobar-conf.lht";
rnd_app.conf_sysdir_path = FOOBARSHAREDIR;
rnd_app.conf_sys_path = FOOBARSHAREDIR "/foobar-conf.lht";
rnd_app.crosshair_move_to = my_crosshair_move_to;
rnd_app.draw_attached = my_draw_attached;
rnd_fix_locale_and_env();
rnd_main_args_init(&ga, argc, foobar_action_args);
rnd_hidlib_init1(conf_core_init, ".");
/* foobar_event_init_app(); - creates all the events */
for(n = 1; n < argc; n++)
n += rnd_main_args_add(&ga, argv[n], argv[n+1]);
rnd_hidlib_init2(pup_buildins, foobar_buildins);
rnd_hidlib_init3_auto();
foobar_main_init();
/* flipping the "design" means getting a coord system where y increases upward */
rnd_conf_set(RND_CFR_CLI, "editor/view/flip_y", 0, "1", RND_POL_OVERWRITE);
if (rnd_main_args_setup1(&ga) != 0) {
foobar_main_uninit();
rnd_main_args_uninit(&ga);
exit(1);
}
/* Initialize actions only when the gui is already known so only the right
one is registered (there can be only one GUI). */
/*#include "generated_lists.h"*/
if (rnd_main_args_setup2(&ga, &n) != 0) {
foobar_main_uninit();
rnd_main_args_uninit(&ga);
exit(n);
}
/* foobar: load the design specified on command line */
if (rnd_main_exported(&ga, &foobar.hidlib, 0, NULL)) {
foobar_main_uninit();
rnd_main_args_uninit(&ga);
exit(0);
}
foobar_crosshair_gui_init();
/* main loop */
if (RND_HAVE_GUI_ATTR_DLG)
gui_support_plugins(1);
rnd_mainloop_interactive(&ga, &foobar.hidlib);
foobar_crosshair_gui_uninit();
foobar_main_uninit();
rnd_main_args_uninit(&ga);
return 0;
}
|