![]() |
Shadowrun: Awakened 29 September 2011 - Build 871
|
00001 /* 00002 Copyright 2005-2010 Intel Corporation. All Rights Reserved. 00003 00004 This file is part of Threading Building Blocks. 00005 00006 Threading Building Blocks is free software; you can redistribute it 00007 and/or modify it under the terms of the GNU General Public License 00008 version 2 as published by the Free Software Foundation. 00009 00010 Threading Building Blocks is distributed in the hope that it will be 00011 useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00012 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with Threading Building Blocks; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 As a special exception, you may use this file as part of a free software 00020 library without restriction. Specifically, if other files instantiate 00021 templates or use macros or inline functions from this file, or you compile 00022 this file and link it with other files to produce an executable, this 00023 file does not by itself cause the resulting executable to be covered by 00024 the GNU General Public License. This exception does not however 00025 invalidate any other reasons why the executable file might be covered by 00026 the GNU General Public License. 00027 */ 00028 00029 /* 00030 The original source for this example is 00031 Copyright (c) 1994-2008 John E. Stone 00032 All rights reserved. 00033 00034 Redistribution and use in source and binary forms, with or without 00035 modification, are permitted provided that the following conditions 00036 are met: 00037 1. Redistributions of source code must retain the above copyright 00038 notice, this list of conditions and the following disclaimer. 00039 2. Redistributions in binary form must reproduce the above copyright 00040 notice, this list of conditions and the following disclaimer in the 00041 documentation and/or other materials provided with the distribution. 00042 3. The name of the author may not be used to endorse or promote products 00043 derived from this software without specific prior written permission. 00044 00045 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS 00046 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 00047 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00048 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 00049 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00050 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00051 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00052 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00053 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00054 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00055 SUCH DAMAGE. 00056 */ 00057 00058 /* 00059 * util.c - Contains all of the timing functions for various platforms. 00060 * 00061 * $Id: util.cpp,v 1.6 2007-02-22 18:17:51 amalakho Exp $ 00062 */ 00063 00064 #include "machine.h" 00065 #include "types.h" 00066 #include "macros.h" 00067 #include "util.h" 00068 #include "light.h" 00069 #include "global.h" 00070 #include "ui.h" 00071 00072 void rt_finalize(void); 00073 00074 #ifndef _WIN32 00075 #include <sys/time.h> 00076 #include <unistd.h> 00077 00078 void rt_sleep(int msec) { 00079 usleep(msec*1000); 00080 } 00081 00082 #else //_WIN32 00083 00084 #undef OLDUNIXTIME 00085 #undef STDTIME 00086 00087 #include <windows.h> 00088 00089 void rt_sleep(int msec) { 00090 Sleep(msec); 00091 } 00092 00093 DWORD starttime; 00094 DWORD stoptime; 00095 00096 void timerstart(void) { 00097 starttime = GetTickCount (); 00098 } 00099 00100 void timerstop(void) { 00101 stoptime = GetTickCount (); 00102 } 00103 00104 flt timertime(void) { 00105 double ttime, start, end; 00106 00107 start = ((double) starttime) / ((double) 1000.00); 00108 end = ((double) stoptime) / ((double) 1000.00); 00109 ttime = end - start; 00110 00111 return ttime; 00112 } 00113 #endif /* _WIN32 */ 00114 00115 /* if we're on a Unix with gettimeofday() we'll use newer timers */ 00116 #ifdef STDTIME 00117 struct timeval starttime, endtime; 00118 struct timezone tz; 00119 00120 void timerstart(void) { 00121 gettimeofday(&starttime, &tz); 00122 } 00123 00124 void timerstop(void) { 00125 gettimeofday(&endtime, &tz); 00126 } 00127 00128 flt timertime(void) { 00129 double ttime, start, end; 00130 00131 start = (starttime.tv_sec+1.0*starttime.tv_usec / 1000000.0); 00132 end = (endtime.tv_sec+1.0*endtime.tv_usec / 1000000.0); 00133 ttime = end - start; 00134 00135 return ttime; 00136 } 00137 #endif /* STDTIME */ 00138 00139 00140 00141 /* use the old fashioned Unix time functions */ 00142 #ifdef OLDUNIXTIME 00143 time_t starttime; 00144 time_t stoptime; 00145 00146 void timerstart(void) { 00147 starttime=time(NULL); 00148 } 00149 00150 void timerstop(void) { 00151 stoptime=time(NULL); 00152 } 00153 00154 flt timertime(void) { 00155 flt a; 00156 a = difftime(stoptime, starttime); 00157 return a; 00158 } 00159 #endif /* OLDUNIXTIME */ 00160 00161 00162 00163 /* random other helper utility functions */ 00164 int rt_meminuse(void) { 00165 return rt_mem_in_use; 00166 } 00167 00168 void * rt_getmem(unsigned int bytes) { 00169 void * mem; 00170 00171 mem=malloc( bytes ); 00172 if (mem!=NULL) { 00173 rt_mem_in_use += bytes; 00174 } 00175 else { 00176 rtbomb("No more memory!!!!"); 00177 } 00178 return mem; 00179 } 00180 00181 unsigned int rt_freemem(void * addr) { 00182 unsigned int bytes; 00183 00184 free(addr); 00185 00186 bytes=0; 00187 rt_mem_in_use -= bytes; 00188 return bytes; 00189 } 00190 00191 void rtbomb(const char * msg) { 00192 rt_ui_message(MSG_ERR, msg); 00193 rt_ui_message(MSG_ABORT, "Rendering Aborted."); 00194 00195 rt_finalize(); 00196 exit(1); 00197 } 00198 00199 void rtmesg(const char * msg) { 00200 rt_ui_message(MSG_0, msg); 00201 }
Copyright © 2007-2010 by The Shadowrun: Awakened Team. This work is licensed under the GNU Lesser General Public License 3.