Rudimentary approach at water splash effect for badguys
[supertux.git] / src / util / reader.cpp
1 /*
2  * src/util/reader.cpp - Utility functions for config handling.
3  * Copyright (C) 2010  Florian Forster
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  * Authors:
20  *   Florian "octo" Forster <supertux at octo.it>
21  */
22
23 #include "util/reader.hpp"
24 #include "video/drawing_request.hpp" /* LAYER_GUI */
25
26 int reader_get_layer (const Reader& reader, int def)
27 {
28   int tmp = 0;
29   bool status;
30
31   status = reader.get ("z-pos", tmp);
32
33   if (!status)
34     status = reader.get ("layer", tmp);
35
36   if (!status)
37     tmp = def;
38
39   if (tmp > (LAYER_GUI - 100))
40     tmp = LAYER_GUI - 100;
41
42   return (tmp);
43 } /* int reader_get_layer */
44
45 /* vim: set sw=2 et sts=2 : */