R-PAGE
Resistance's Portable-Adventure-Game-Engine
io.c
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 François Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifdef LATTICE
6 #include <stdio.h>
7 #include <stdarg.h>
8 #include <string.h>
9 #include <exec/types.h>
10 #include <libraries/dos.h>
11 #include <exec/memory.h>
12 #include <proto/exec.h>
13 #include <proto/dos.h>
14 #include <intuition/intuition.h>
15 #include <hardware/custom.h>
16 #include <devices/trackdisk.h>
17 #include <hardware/cia.h>
18 #include "rpage/aos/io.h"
19 
20 extern struct IntuitionBase *IntuitionBase;
21 extern struct Custom far custom;
22 struct Window *mouse_window = NULL;
23 struct IntuiMessage *window_message = NULL;
24 static char str_diskname[256];
25 
26 int file_get_size(char *filename)
27 {
28  struct FileLock *lock;
29  struct FileInfoBlock *fib_ptr;
30  int filesize = -1;
31 
32  memset(str_diskname, 0, 255);
33  fib_ptr = (struct FileInfoBlock *)AllocMem( sizeof( struct FileInfoBlock ), MEMF_PUBLIC | MEMF_CLEAR );
34  lock = (struct FileLock *)Lock(filename, SHARED_LOCK);
35 
36  if(lock != NULL)
37  {
38  if(Examine((BPTR)lock, fib_ptr) != NULL)
39  filesize = fib_ptr->fib_Size;
40 
41  UnLock((BPTR)lock);
42  }
43 
44  FreeMem(fib_ptr, sizeof(struct FileInfoBlock));
45 
46  return filesize;
47 }
48 
49 char *disk_get_logical_name(char *device_physical_name)
50 {
51  short disk_idx;
52  BOOL disk_is_present = FALSE;
53  struct MsgPort *TrackMP; /* Pointer for message port */
54  struct IOExtTD *TrackIO; /* Pointer for IORequest */
55  struct FileLock *lock;
56  struct FileInfoBlock *fib_ptr;
57 
58 #ifdef DEBUG_MACROS
59  printf("disk_get_logical_name(%s), ", device_physical_name);
60 #endif
61 
62  if (strncmp(device_physical_name, "df0:", 4) == 0)
63  disk_idx = 0;
64  else if (strncmp(device_physical_name, "df1:", 4) == 0)
65  disk_idx = 1;
66  else if (strncmp(device_physical_name, "df2:", 4) == 0)
67  disk_idx = 2;
68  else if (strncmp(device_physical_name, "df3:", 4) == 0)
69  disk_idx = 3;
70 #ifdef DEBUG_MACROS
71  else
72  {
73  printf("unknown disk physical name!\n");
74  return NULL;
75  }
76 #endif
77 
78  // is there a disk present ?
79  if (TrackMP=CreatePort(0,0) )
80  if (TrackIO=(struct IOExtTD *)CreateExtIO(TrackMP, sizeof(struct IOExtTD)))
81  {
82  if (!OpenDevice(TD_NAME, (long)disk_idx,(struct IORequest *)TrackIO, 0))
83  {
84  TrackIO->iotd_Req.io_Flags = IOF_QUICK;
85  TrackIO->iotd_Req.io_Command = TD_CHANGESTATE;
86  BeginIO((struct IORequest *)TrackIO);
87  WaitIO((struct IORequest *)TrackIO);
88  // printf("df%d:%d/%d\n", disk_idx, TrackIO->iotd_Req.io_Error, TrackIO->iotd_Req.io_Actual);
89  if (!(TrackIO->iotd_Req.io_Error))
90  {
91  if (!(TrackIO->iotd_Req.io_Actual))
92  disk_is_present = TRUE;
93  }
94 #ifdef DEBUG_MACROS
95 
96  else
97  printf("BeginIO() error!\n");
98 #endif
99  }
100 #ifdef DEBUG_MACROS
101  else
102  printf("%s did not open\n", TD_NAME);
103 #endif
104  }
105 
106  // if a disk is found, get his name
107  if(disk_is_present)
108  {
109  memset(str_diskname, 0, 255);
110  fib_ptr = (struct FileInfoBlock *)AllocMem( sizeof( struct FileInfoBlock ), MEMF_PUBLIC | MEMF_CLEAR );
111  lock = (struct FileLock *)Lock(device_physical_name, SHARED_LOCK);
112 
113  if(lock != NULL)
114  {
115  if(Examine((BPTR)lock, fib_ptr) != NULL)
116  strcpy(str_diskname, fib_ptr->fib_FileName);
117 
118  UnLock((BPTR)lock);
119  }
120 
121  FreeMem(fib_ptr, sizeof(struct FileInfoBlock));
122 
123  strcat(str_diskname, ":");
124 #ifdef DEBUG_MACROS
125  printf("%s\n", str_diskname);
126 #endif
127  return str_diskname;
128  }
129 
130 #ifdef DEBUG_MACROS
131  printf("no disk in drive!\n");
132 #endif
133  return NULL; // device_physical_name;
134 }
135 
136 void input_window_init(struct Window *window)
137 {
138  mouse_window = window;
139 }
140 
141 void input_update(short *button, short *x, short *y, unsigned short *rawkey)
142 {
143  unsigned long class;
144  unsigned short code;
145  unsigned short qualifier;
146  unsigned short button_left = 0, button_right = 0;
147 
148  if (mouse_window != NULL)
149  {
150  Wait(1 << mouse_window->UserPort->mp_SigBit);
151 
152  while (window_message = (struct IntuiMessage *)GetMsg(mouse_window->UserPort))
153  {
154  class = window_message->Class; /* IDCMP flag. */
155  code = window_message->Code;
156  qualifier = window_message->Qualifier;
157 
158  *x = window_message->MouseX; /* X position of the mouse. */
159  *y = window_message->MouseY; /* Y position of the mouse. */
160  ReplyMsg((struct Message *)window_message);
161  }
162 
163  *rawkey = 0x0;
164 
165  switch(class)
166  {
167  case MOUSEBUTTONS:
168  switch (code)
169  {
170  case SELECTDOWN:
171  // printf("Left mouse button pressed.\n");
172  button_left = PLATFORM_MOUSE_LEFT_BUTTON;
173  break;
174  case SELECTUP:
175  // printf("Left mouse button released.\n");
176  button_left = 0;
177  break;
178  case MENUDOWN: /* Right button pressed. */
179  // printf("Right mouse button pressed.\n");
180  button_right = PLATFORM_MOUSE_RIGHT_BUTTON;
181  break;
182  case MENUUP: /* Right button released. */
183  // printf("Right mouse button released.\n");
184  button_right = 0;
185  break;
186  }
187  break;
188  case RAWKEY: /* The user pressed/released a key! */
189  *rawkey = code;
190  /* Print out the raw keycode (both as decimal and hex.): */
191  // printf("Raw keycode: %6d(d) %6x(h)\n", code, code );
192 
193  // /* Print out the qualifier (both as decimal and hex.): */
194  // printf("Qualifier: %6d(d) %6x(h)\n", qualifier, qualifier);
195 
196  // /* This shows how you can check if a SHIFT or CTRL */
197  // /* qualifier key was also pressed: */
198  // if( qualifier &= IEQUALIFIER_LSHIFT )
199  // printf("Left SHIFT button pressed\n");
200 
201  // if( qualifier &= IEQUALIFIER_RSHIFT )
202  // printf("Right SHIFT button pressed\n");
203 
204  // if( qualifier &= IEQUALIFIER_CONTROL )
205  // printf("CTRL button pressed\n");
206 
207  // printf("\n");
208  break;
209  }
210 
211  *button = button_left | button_right;
212  }
213 #ifdef DEBUG_MACROS
214  else
215  printf("No window to get mouse from!\n");
216 #endif
217 }
218 #endif
#define FALSE
Definition: utils.h:41
int BOOL
Definition: utils.h:32
#define TRUE
Definition: utils.h:37