1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
23 #include "src/lib/16_head.h"
\r
25 /* Function: Wait **********************************************************
\r
27 * Parameters: wait - time in microseconds
\r
29 * Description: pauses for a specified number of microseconds.
\r
32 void wait(clock_t wait){
\r
37 goal = wait + clock();
\r
38 while((goal > clock()) && !kbhit()) ;
\r
44 long int save_pos, size_of_file;
\r
46 save_pos = ftell(fp);
\r
47 fseek(fp, 0L, SEEK_END);
\r
48 size_of_file = ftell(fp);
\r
49 fseek(fp, save_pos, SEEK_SET);
\r
50 return(size_of_file);
\r
53 void printmeminfoline(byte *strc, const byte *pee, size_t h_total, size_t h_used, size_t h_free)
\r
56 strcat(strc,pee); strcat(strc," "); ultoa((dword)h_total,str,10); strcat(strc,str);
\r
57 if(strlen(str)<=4) strcat(strc," "); //printf("%u\n", strlen(str));
\r
58 strcat(strc," "); ultoa((dword)h_used,str,10); strcat(strc,str); strcat(strc," "); strcat(strc," ");
\r
59 ultoa((dword)h_free,str,10); strcat(strc,str);
\r
63 ///////////////////////////////////////////////////////////////////////////
\r
65 // US_CheckParm() - checks to see if a string matches one of a set of
\r
66 // strings. The check is case insensitive. The routine returns the
\r
67 // index of the string that matched, or -1 if no matches were found
\r
69 ///////////////////////////////////////////////////////////////////////////
\r
71 US_CheckParm(char *parm,char **strings)
\r
77 while (!isalpha(*parm)) // Skip non-alphas
\r
80 for (i = 0;*strings && **strings;i++)
\r
82 for (s = *strings++,p = parm,cs = cp = 0;cs == cp;)
\r
98 //===========================================================================
\r
101 ==========================
\r
105 ==========================
\r
108 void Quit (char *error)
\r
110 unsigned finscreen;
\r
112 union REGS in, out;
\r
121 //CA_CacheGrChunk (ERRORSCREEN);
\r
122 //screen = grsegs[ERRORSCREEN];
\r
130 int86(0x10, &in, &out);
\r
132 if (error && *error)
\r
134 movedata ((unsigned)screen,7,0xb800,0,7*160);
\r
141 if (!error || !(*error))
\r
145 movedata ((unsigned)screen,7,0xb800,0,4000);
\r
149 //asm mov dh,23 // row
\r
150 //asm mov dl,0 // collumn
\r
158 //===========================================================================
\r
161 byte dirchar(byte in)
\r