Subversion Repositories shark

Rev

Rev 1085 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1085 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Paolo Gai           <pj@gandalf.sssup.it>
10
 *   (see the web pages for full authors list)
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/*
20
 ------------
21
 CVS :        $Id: images.h,v 1.1.1.1 2002-09-02 09:37:44 pj Exp $
22
 
23
 File:        $File$
24
 Revision:    $Revision: 1.1.1.1 $
25
 Last update: $Date: 2002-09-02 09:37:44 $
26
 ------------
27
*/
28
 
29
/*
30
 * Copyright (C) 2000 Merli Andrea and Zucchetti Alessandro
31
 *
32
 * This program is free software; you can redistribute it and/or modify
33
 * it under the terms of the GNU General Public License as published by
34
 * the Free Software Foundation; either version 2 of the License, or
35
 * (at your option) any later version.
36
 *
37
 * This program is distributed in the hope that it will be useful,
38
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
40
 * GNU General Public License for more details.
41
 *
42
 * You should have received a copy of the GNU General Public License
43
 * along with this program; if not, write to the Free Software
44
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
45
 *
46
 */
47
 
48
#define SFONDO rgb16(0,128,0)
49
#define B 255  /*BIANCO*/
50
#define V 16    /*verde*/
51
#define M 200  /*marrone*/
52
#define C 15   /*bianco*/
53
#define G 14   /*Giallo*/
54
#define N 0    /*NERO*/
55
#define P 13   /*Rosa*/
56
 
57
char pallone[64]={ V,V,V,V,V,V,V,V,
58
                   V,V,B,B,B,B,V,V,
59
                   V,N,B,B,B,B,N,V,
60
                   B,B,N,B,B,N,B,B,
61
                   B,B,B,N,N,B,B,B,
62
                   B,B,N,B,B,N,B,B,
63
                   V,N,B,B,B,B,N,V,
64
                   V,V,B,B,B,B,V,V,
65
                   };
66
char goal_data[]={N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
67
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
68
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
69
                  N,N,G,G,G,G,N,G,G,G,N,G,G,G,N,G,N,N,N,N,
70
                  N,N,G,N,N,N,N,G,N,G,N,G,N,G,N,G,N,N,N,N,
71
                  N,N,G,N,N,N,N,G,N,G,N,G,N,G,N,G,N,N,N,N,
72
                  N,N,G,N,N,N,N,G,N,G,N,G,N,G,N,G,N,N,N,N,
73
                  N,N,G,N,N,N,N,G,N,G,N,G,N,G,N,G,N,N,N,N,
74
                  N,N,G,N,G,G,N,G,N,G,N,G,G,G,N,G,N,N,N,N,
75
                  N,N,G,N,N,G,N,G,N,G,N,G,N,G,N,G,N,N,N,N,
76
                  N,N,G,G,G,G,N,G,G,G,N,G,N,G,N,G,G,G,N,N,
77
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
78
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
79
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
80
                  N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,
81
                  };
82