Subversion Repositories shark

Rev

Rev 1160 | Rev 1379 | 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
 ------------
1352 pj 21
 CVS :        $Id: demo.h,v 1.4 2004-03-28 09:14:17 pj Exp $
1085 pj 22
 
23
 File:        $File$
1352 pj 24
 Revision:    $Revision: 1.4 $
25
 Last update: $Date: 2004-03-28 09:14:17 $
1085 pj 26
 ------------
27
**/
28
 
29
/*
30
 * Copyright (C) 2000 Paolo Gai
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
 
49
#include <ll/ll.h>
50
#include <kernel/types.h>
51
#include <kernel/descr.h>
52
#include <math.h>
53
#include <drivers/glib.h>
54
#include <drivers/keyb.h>
55
 
56
 
1158 pj 57
/* Subparts */
1085 pj 58
#define JET_ON
59
#define BALL_ON
60
 
1158 pj 61
 
62
/* CPU Speed Selection
63
   --------------------------------------------------------------------
1160 pj 64
   1700 - Pentium 4 1.7 GHz
1352 pj 65
   1300 - Centrino 1.3 GHz
1160 pj 66
   400  - Pentium 2 400 MHz
67
   133  - Pentium 1 133 MHz
1158 pj 68
*/
1352 pj 69
#define CPU 1300
1158 pj 70
 
1085 pj 71
/*
72
 *
73
 * WCET, Periods and Models
74
 *
75
 */
76
 
1158 pj 77
#if CPU==133
78
#define WCET_JETCTRL     10000
79
#define WCET_JETDUMMY      300
80
#define WCET_JETSLIDE     2000
81
#define WCET_BALL          250
82
#define WCET_HARD_BALL    1000
1160 pj 83
#define BALL_DELAY       10000
1158 pj 84
#endif
1085 pj 85
 
1158 pj 86
#if CPU==400
1085 pj 87
#define WCET_JETCTRL      7500
88
#define WCET_JETDUMMY      200
89
#define WCET_JETSLIDE     2100
1158 pj 90
#define WCET_BALL          100
91
#define WCET_HARD_BALL     380
1160 pj 92
#define BALL_DELAY       10000
1158 pj 93
#endif
1085 pj 94
 
1352 pj 95
#if CPU==1300
96
#define WCET_JETCTRL      4500
97
#define WCET_JETDUMMY      100
98
#define WCET_JETSLIDE     1300
99
#define WCET_BALL          100
100
#define WCET_HARD_BALL     650
101
#define BALL_DELAY      100000
102
#endif
103
 
1160 pj 104
#if CPU==1700
105
#define WCET_JETCTRL      4500
106
#define WCET_JETDUMMY      100
107
#define WCET_JETSLIDE     1300
108
#define WCET_BALL          100
109
#define WCET_HARD_BALL     410
110
#define BALL_DELAY      100000
111
#endif
1158 pj 112
 
1085 pj 113
#define PERIOD_JETCTRL  100000
114
#define PERIOD_JETDUMMY 100000
115
#define PERIOD_JETSLIDE 100000
116
#define PERIOD_BALL      10000
117
 
118
/*
119
 *
120
 * Global Stuffs
121
 *
122
 */
123
 
124
/* graphic mutex... */
125
extern mutex_t mutex;
126
 
127
/* useful colors... */
128
extern int white;
129
extern int black;
130
extern int red;
131
extern int gray;
132
 
133
void init_jetcontrol();
134
void init_ball(void);
135
void scenario_jetcontrol();
136
void scenario_ball();
137
char *itoa(int n, char *s);
138
int myrand(int x);
139
 
140
 
141
 
142
/*
143
 *
144
 * JETCONTROL stuffs
145
 *
146
 */
147
 
148
#define JET_NTASK   35
149
#define JET_Y_NAME 170
150
 
151
#define DUMMY_PID    1
152
 
153
#define JET_DUMMY_WIDTH    210
154
#define JET_DUMMY_HEIGHT    80
155
 
156
/* the point (x, y) is the top left corner */
157
#define JET_DUMMY_X        428
158
#define JET_DUMMY_Y        65
159
 
160
#define JET_SLIDE_WIDTH     50
161
#define JET_SLIDE_X        576
162
 
163
 
164
 
165
 
166
/*
167
 *
168
 * BALL stuffs
169
 *
170
 */
171
 
172
// x and y corners are specified whithout consider a border of 3 pixels
1160 pj 173
#define BALL_Y      450         /* position of the floor        */
174
#define BALL_HEIGHT 385         /* initial height of the ball   */
175
#define BALL_XMIN    10         /* min position X of the ball   */
176
#define BALL_XMAX   370         /* max position X of the ball   */
177
#define BALL_VELX     5.        /* horizontal ball velocity     */
178
#define BALL_VYMIN   11.        /* min ground speed             */
179
#define BALL_MAX_P   60         /* max number of balls          */
1085 pj 180
 
181
#define BALL_GROUP    2          /* task group of the balls */