/**
* This file is part of MountainNavigation.
*
* MountainNavigation 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.
*
* MountainNavigation 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 MountainNavigation. If not, see <http://www.gnu.org/licenses/>.
*
* @copyright Copyright (c) 2016 Vinzenz Rosenkanz <vinzenz.rosenkranz@gmail.com>
*
* @author Vinzenz Rosenkranz <vinzenz.rosenkranz@gmail.com>
*/
package de.apps4ics.mountainnavigation;
public class Features {
public static final int FOUNTAIN_SMALL = 0; //Size of fountain
public static final int FOUNTAIN_MEDIUM = 1; //Size of fountain
public static final int FOUNTAIN_LARGE = 2; //Size of fountain
public static final int PATH_EXPOSED = 0; //is the path exposed?
public static final int PATH_DIFF_WET = 1; //difficult path if rain
public static final int PATH_GIDDINESS = 2; //if a person has to be free from giddiness for this path
public static final int PATH_CLIMBING = 3; //if a person has to climb on this path
public static final int BREAK_STONE = 0; //if the break point is just a stone
public static final int BREAK_BENCH = 1; //if the break point is a bench
public static final int BREAK_TABLE = 2; //if the break point has tables
public static final int BREAK_ROOFED = 3; //if the break point also is roofed
public static final int HUT_REFUGE = 0;
public static final int HUT_SUPPORT = 1;
public static final int HUT_CATERING = 2;
//trash bins have no options
//images might have no options
//cell reception might has no options, (gets own DB table or predefined levels: level 0 => 0-20%, level 1 => 21-40%, ...)
//wifi, same as cell reception
//lifts have no options
}