]> git.lizzy.rs Git - plan9front.git/blob - sys/src/games/doom/m_bbox.c
games/doom: fix mips
[plan9front.git] / sys / src / games / doom / m_bbox.c
1 // Emacs style mode select   -*- C++ -*- 
2 //-----------------------------------------------------------------------------
3 //
4 // $Id:$
5 //
6 // Copyright (C) 1993-1996 by id Software, Inc.
7 //
8 // This source is available for distribution and/or modification
9 // only under the terms of the DOOM Source Code License as
10 // published by id Software. All rights reserved.
11 //
12 // The source is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
15 // for more details.
16 //
17 // $Log:$
18 //
19 // DESCRIPTION:
20 //      Main loop menu stuff.
21 //      Random number LUT.
22 //      Default Config File.
23 //      PCX Screenshots.
24 //
25 //-----------------------------------------------------------------------------
26
27 static const char
28 rcsid[] = "$Id: m_bbox.c,v 1.1 1997/02/03 22:45:10 b1 Exp $";
29
30
31 #include "doomtype.h"
32 #include "m_bbox.h"
33
34
35 void M_ClearBox (fixed_t *box)
36 {
37     box[BOXTOP] = box[BOXRIGHT] = MININT;
38     box[BOXBOTTOM] = box[BOXLEFT] = MAXINT;
39 }
40
41 void
42 M_AddToBox
43 ( fixed_t*      box,
44   fixed_t       x,
45   fixed_t       y )
46 {
47     if (x<box[BOXLEFT])
48         box[BOXLEFT] = x;
49     else if (x>box[BOXRIGHT])
50         box[BOXRIGHT] = x;
51     if (y<box[BOXBOTTOM])
52         box[BOXBOTTOM] = y;
53     else if (y>box[BOXTOP])
54         box[BOXTOP] = y;
55 }
56
57
58
59
60