File: button.c

package info (click to toggle)
ale-clone 1.15pre16.3-1
  • links: PTS
  • area: contrib
  • in suites: potato
  • size: 2,432 kB
  • ctags: 3,217
  • sloc: ansic: 37,483; sh: 1,105; makefile: 343
file content (60 lines) | stat: -rw-r--r-- 1,178 bytes parent folder | download
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
/*
**	A clone of a famous game.
*/
/**@name button.c	-	The button code. */
/*
**	(c) Copyright 1999 by Lutz Sammer
**
**	$Id: button.c,v 1.2 1999/07/08 21:09:55 root Exp $
*/

//@{

#if 0
// This was the start of my (johns) version, the new and active version
// is from cade and could be found in ui/button_table.c and ui/botpanel.c

#include <stdio.h>
#include <string.h>

#include "clone.h"
#include "video.h"
#include "tileset.h"
#include "map.h"
#include "sound_id.h"
#include "unitsound.h"
#include "button.h"

#include "etlib/hash.h"

local hashtable(int,61) ButtonHash;	/// lookup table for button names

/**
**	Find unit button by identifier.
**
**	@param ident	The button identifier.
**	@return		Unit button pointer.
*/
global UnitButton* ButtonByIdent(const char* ident)
{
    return *(UnitButton**)hash_find(ButtonHash,(char*)ident);
}

/**
**	Init button.
*/
global void InitUnitButtons(void)
{
    int i;

//    for( i=0; i<sizeof(UnitButtons)/sizeof(*UnitButtons); ++i ) {
    for( i=0; UnitButtons[i].Ident; ++i ) {
//	DebugLevel0("%s\n",UnitButtons[i].Ident); 
	*(UnitButton**)hash_add(ButtonHash,UnitButtons[i].Ident)=
		&UnitButtons[i];
    }
}

#endif

//@}