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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/* simsys.h
*
* Copyright (c) 2001 Hansjrg Malthaner
* hansjoerg.malthaner@gmx.de
*
* This file is part of the Simugraph graphics engine.
*
*
* This file may be copied and modified freely so long as the above credits,
* this paragraph, and the below disclaimer of warranty are retained; no
* financial profit is derived from said modification or copying; and all
* licensing rights to any modifications are granted to the original author,
* Hansjrg Malthaner.
*
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef simsys_h
#define simsys_h
#ifdef __cplusplus
extern "C" {
#endif
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
/* Variablen zur Messageverarbeitung */
/* Klassen */
#define SIM_NOEVENT 0
#define SIM_MOUSE_BUTTONS 1
#define SIM_KEYBOARD 2
#define SIM_MOUSE_MOVE 3
#define SIM_IGNORE_EVENT 255
/* Aktionen */ /* added RIGHTUP and MIDUP */
#define SIM_MOUSE_LEFTUP 1
#define SIM_MOUSE_RIGHTUP 2
#define SIM_MOUSE_MIDUP 3
#define SIM_MOUSE_LEFTBUTTON 4
#define SIM_MOUSE_RIGHTBUTTON 5
#define SIM_MOUSE_MIDBUTTON 6
#define SIM_MOUSE_MOVED 7
/**
* inits operating system stuff
* @author Hj. Malthaner
*/
int dr_os_init(int n, int *parameter);
/**
* opens graphics device/context/window of size w*h
* @param w width
* @param h height
* @author Hj. Malthaner
*/
int dr_os_open(int w, int h);
/**
* closes operating system stuff
* @author Hj. Malthaner
*/
int dr_os_close();
/**
* retrieve display width
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
int dr_get_width();
/**
* retrieve display height
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
int dr_get_height();
/**
* creates a (maybe virtual) array of graphics data
* @author Hj. Malthaner
*/
unsigned short * dr_textur_init();
/**
* displays the array of graphics data
* @author Hj. Malthaner
*/
void dr_textur(int xp, int yp, int w, int h);
/**
* use this method to flush graphics pipeline (undrawn stuff) onscreen.
* @author Hj. Malthaner
*/
void dr_flush();
/**
* set colormap entries
* @author Hj. Malthaner
*/
void dr_setRGB8multi(int first, int count, unsigned char * data);
/**
* display/hide mouse pointer
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
void show_pointer(int yesno);
/**
* move mouse pointer
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
void move_pointer(int x, int y);
/**
* update softpointer position
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
void ex_ord_update_mx_my();
/**
* get events from the system
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
void GetEvents();
/**
* get events from the system without waiting
* @author Hj. Malthaner (hansjoerg.malthaner@gmx.de)
*/
void GetEventsNoWait();
/**
* @returns time since progrma start in milliseconds
* @author Hj. Malthaner
*/
long long dr_time(void);
/**
* sleeps some microseconds
* @author Hj. Malthaner
*/
void dr_sleep(unsigned long usec);
/**
* loads a sample
* @return a handle for that sample or -1 on failure
* @author Hj. Malthaner
*/
int dr_load_sample(const char *filename);
/**
* plays a sample
* @param key the key for the sample to be played
* @author Hj. Malthaner
*/
void dr_play_sample(int key, int volume);
#ifdef __cplusplus
}
#endif
#endif
|