1 //  This file is part of the computer game Kartofel.
2 //  Copyright (C) 2008 Pawel Aleksander Fedorynski <pfedor@fuw.edu.pl>
3 //
4 //  This program is free software; you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation; either version 2 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program; if not, write to the Free Software
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 
18 #ifndef KARTOFEL_CONFIG_H
19 #define KARTOFEL_CONFIG_H
20 
21 #define VERSION "1.2"
22 
23 #define HIGH_SCORES_FILENAME "./kartofel.txt"
24 #define SCORE_SUBMISSION_URL "http://kartofel.jfedor.org/ksc.php"
25 
26 #define SOUND_MENU_NAV_FILENAME "/usr/local/share/kartofel/sounds/click02.wav"
27 #define SOUND_MENU_CLICK_FILENAME "/usr/local/share/kartofel/sounds/click01.wav"
28 #define SOUND_ROTATE_FILENAME "/usr/local/share/kartofel/sounds/click03.wav"
29 #define SOUND_START_FILENAME "/usr/local/share/kartofel/sounds/click03.wav"
30 #define SOUND_CRASH_FILENAME "/usr/local/share/kartofel/sounds/sound_crash.wav"
31 #define SOUND_DOT_LIT_FILENAME "/usr/local/share/kartofel/sounds/sound_dot_lit.wav"
32 #define SOUND_LEVEL_SUCCESS_FILENAME "/usr/local/share/kartofel/sounds/sound_level_success.wav"
33 #define SOUND_OUT_OF_TIME_FILENAME "/usr/local/share/kartofel/sounds/sound_out_of_time.wav"
34 #define SOUND_ENTER_NAME_RETURN_FILENAME "/usr/local/share/kartofel/sounds/click01.wav"
35 
36 #define MENU_FONT_FILENAME "/usr/local/share/kartofel/fonts/Cyklop-Regular.ttf"
37 #define MENU_TITLE_FONT_FILENAME "/usr/local/share/kartofel/fonts/Cyklop-Regular.ttf"
38 #define INFO_FONT_FILENAME "/usr/local/share/kartofel/fonts/FreeSans.ttf"
39 #define INFO_FONT_SMALL_FILENAME "/usr/local/share/kartofel/fonts/FreeSans.ttf"
40 #define MSG_FONT_FILENAME "/usr/local/share/kartofel/fonts/Cyklop-Regular.ttf"
41 
42 #define MUSIC_FILENAME "/usr/local/share/kartofel/music/moonlight.ogg"
43 #define MENU_BACKGROUND_IMAGE_FILENAME "/usr/local/share/kartofel/images/Cliffs-1024x768.png"
44 #define ICON_FILENAME "/usr/local/share/kartofel/images/icon32x32.png"
45 #define LEVELS_FILENAME_PREFIX "/usr/local/share/kartofel/levels/"
46 
47 #endif  // KARTOFEL_CONFIG_H
48