Subversion Repositories shark

Rev

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