File: edit.h

package info (click to toggle)
alex4 1.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,112 kB
  • sloc: ansic: 6,312; makefile: 27
file content (40 lines) | stat: -rw-r--r-- 1,665 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**************************************************************
 *         _____    __                       _____            *
 *        /  _  \  |  |    ____  ___  ___   /  |  |           *
 *       /  /_\  \ |  |  _/ __ \ \  \/  /  /   |  |_          *
 *      /    |    \|  |__\  ___/  >    <  /    ^   /          *
 *      \____|__  /|____/ \___  >/__/\_ \ \____   |           *
 *              \/            \/       \/      |__|           *
 *                                                            *
 **************************************************************
 *    (c) Free Lunch Design 2003                              *
 *    Written by Johan Peitz                                  *
 *    http://www.freelunchdesign.com                          *
 **************************************************************
 *    This source code is released under the The GNU          *
 *    General Public License (GPL). Please refer to the       *
 *    document license.txt in the source directory or         *
 *    http://www.gnu.org for license information.             *
 **************************************************************/
 
 
 
#ifndef _EDIT_H_
#define _EDIT_H_

#include <allegro.h>
#include "map.h"

// the editor can be in one of the following modes
#define EDIT_MODE_DRAW		1
#define EDIT_MODE_SELECT	2
#define EDIT_MODE_STATS		3

// functions
void set_edit_mode(int mode);
char *get_edit_path_and_file();
void set_edit_path_and_file(const char *str);
void draw_edit_mode(BITMAP *bmp, Tmap *map, int mx, int my);
void update_edit_mode(Tmap *map, BITMAP *bmp, int mx, int my, int mb);

#endif