Gridarta Editor
IGUIConstants.java
Go to the documentation of this file.
1 /*
2  * Gridarta MMORPG map editor for Crossfire, Daimonin and similar games.
3  * Copyright (C) 2000-2023 The Gridarta Developers.
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 along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19 
20 package net.sf.gridarta.var.daimonin;
21 
24 
31 public interface IGUIConstants extends GUIConstants {
32 
37 
41  int DEF_MAPSIZE = 24;
42 
47 
52 
56  String SCRIPTS_DIR = "dev/editor/scripts";
57 
61  String PICKMAP_DIR = "dev/editor/pickmaps";
62 
63  String ARCHDEF_FILE = "archdef.dat"; // position-data of multi-parts
64 
65  // name of the arch resource files (these get read and written in the arch dir)
66 
67  String ARCH_FILE = "archetypes"; // file with all arches
68 
72  String ANIMTREE_FILE = "animtree";
73 
74  String ARTIFACTS_FILE = "artifacts"; // file with artifact definitions
75 
76  String TILE_NORTH = ResourceIcons.SYSTEM_DIR + "north.png";
77 
81  String SPELL_FILE = "spells.xml";
82 
83 }
net.sf.gridarta.var.daimonin.IGUIConstants.DEF_MAPSIZE
int DEF_MAPSIZE
Default map size (both height and width).
Definition: IGUIConstants.java:41
net.sf.gridarta.var.daimonin.IGUIConstants.ARCH_FILE
String ARCH_FILE
Definition: IGUIConstants.java:67
net.sf.gridarta.var.daimonin.IGUIConstants.SCRIPTS_DIR
String SCRIPTS_DIR
The directory that contains all scripts.
Definition: IGUIConstants.java:56
net.sf.gridarta.var.daimonin.IGUIConstants.DEF_MAPDIFFICULTY
int DEF_MAPDIFFICULTY
Default difficulty for newly created maps.
Definition: IGUIConstants.java:36
net.sf.gridarta
Base package of all Gridarta classes.
net.sf.gridarta.gui.utils.GUIConstants
Defines common UI constants used in different dialogs.
Definition: GUIConstants.java:33
net.sf.gridarta.var.daimonin.IGUIConstants.SPELL_FILE
String SPELL_FILE
Name of the files the spell information (names and numbers).
Definition: IGUIConstants.java:81
net.sf
net.sf.gridarta.var.daimonin.IGUIConstants.DEF_PICKMAP_HEIGHT
int DEF_PICKMAP_HEIGHT
Default height for pickmaps.
Definition: IGUIConstants.java:51
net.sf.gridarta.gui
Graphical User Interface of Gridarta.
net.sf.gridarta.var.daimonin.IGUIConstants
Defines common UI constants used in different dialogs and all used icon files.
Definition: IGUIConstants.java:31
net.sf.gridarta.var.daimonin.IGUIConstants.TILE_NORTH
String TILE_NORTH
Definition: IGUIConstants.java:76
net
net.sf.gridarta.var.daimonin.IGUIConstants.ARCHDEF_FILE
String ARCHDEF_FILE
Definition: IGUIConstants.java:63
net.sf.gridarta.var.daimonin.IGUIConstants.ARTIFACTS_FILE
String ARTIFACTS_FILE
Definition: IGUIConstants.java:74
net.sf.gridarta.var.daimonin.IGUIConstants.DEF_PICKMAP_WIDTH
int DEF_PICKMAP_WIDTH
Default width for pickmaps.
Definition: IGUIConstants.java:46
net.sf.gridarta.var.daimonin.IGUIConstants.ANIMTREE_FILE
String ANIMTREE_FILE
File to store the animation tree information after arch collection.
Definition: IGUIConstants.java:72
net.sf.gridarta.utils.ResourceIcons
Creates ImageIcon instances from resources.
Definition: ResourceIcons.java:46
net.sf.gridarta.gui.utils
Definition: AnimationComponent.java:20
net.sf.gridarta.var.daimonin.IGUIConstants.PICKMAP_DIR
String PICKMAP_DIR
The directory that contains all pickmaps.
Definition: IGUIConstants.java:61
net.sf.gridarta.utils
Definition: ActionBuilderUtils.java:20
net.sf.gridarta.utils.ResourceIcons.SYSTEM_DIR
static final String SYSTEM_DIR
The directory that contains the system icons.
Definition: ResourceIcons.java:56