/* * Copyright (C) 2011 Michael Vogt <michu@neophob.com> * Copyright (C) 2012 Gyver * * 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/>. */ package com.gyver.matrixmover.properties; /** * The Class ConfigConstant. * * Code-parts copied from http://github.com/neophob/PixelController * * @author Gyver */ public final class ConfigConstants { private ConfigConstants() { /* Utility Class */ } public static final String DISPLAY_PIXEL_WIDTH = "display.pixel.size.width"; public static final String DISPLAY_PIXEL_HEIGHT = "display.pixel.size.height"; public static final String DISPLAY_PIXEL_SPACE = "display.pixel.space"; public static final String OUTPUT_DIMENSION_WIDTH = "output.resolution.width"; public static final String OUTPUT_DIMENSION_HEIGHT = "output.resolution.height"; public static final String OUTPUT_FPS = "output.fps"; public static final String OUTPUT_DEVICE = "output.device"; public static final String OUTPUT_MAPPING = "output.mapping"; public static final String OUTPUT_PIXEL_MODE = "output.pixel.mode"; public static final String ARTNET_IP = "artnet.ip"; public static final String ARTNET_PIXELS_PER_UNIVERSE = "artnet.pixels.per.universe"; public static final String ARTNET_FIRST_UNIVERSE_ID = "artnet.first.universe.id"; public static final String ARTNET_UNIVERSES_PER_NODE = "artnet.universes.per.node"; public static final String ARTNET_SUBNETS_PER_UNIVERSES = "artnet.subnet.per.universe"; public static final String ARTNET_NODES = "artnet.nodes"; public static final String SCENES_DIR = "scenes.dir"; }