*** empty log message ***
This commit is contained in:
parent
e32323ce8a
commit
7c7141863c
@ -1,12 +1,18 @@
|
||||
ZEngine Version Log for Version 0.8.3
|
||||
$Id: changelog.txt,v 1.35 2003/06/11 05:58:29 cozman Exp $
|
||||
$Id: changelog.txt,v 1.36 2003/07/05 00:40:44 cozman Exp $
|
||||
|
||||
As of 0.8.3 changes with a !!! may break backwards compatibility.
|
||||
|
||||
0.8.4
|
||||
-Changed implementation of parts of ZImage for tiny optimization.
|
||||
!!! Removed Rand* functions from ZEngine and replaced with overloaded Rand.
|
||||
-Removed mt19937ar.h/cpp replaced with ZE_ZRandGen.h/cpp
|
||||
-Fixed tiny problem ZImage use of alpha.
|
||||
-Changed default font rendering to blended, much better results. Also added alpha parameter.
|
||||
-ZEngine no longer forces use namespace std, library references prefixed with std::.
|
||||
-Revised all source, cleaned up various areas.
|
||||
-Moved versioning information.
|
||||
-Changed way event hook is implemented, more control, threadsafe.
|
||||
-Changed way event hook is implemented, more control, should be threadsafe.
|
||||
|
||||
0.8.3
|
||||
-Changed Macros in ZE_Utility to functions.
|
||||
@ -21,7 +27,7 @@ $Id: changelog.txt,v 1.35 2003/06/11 05:58:29 cozman Exp $
|
||||
-Simple ZServer and ZClient classes using SDL_net.
|
||||
-Fixed ZImage::SetColorKey. (thanks to Kevin Watters)
|
||||
-Added floats to ZConfigFile.
|
||||
-Removed ZObject inheritance hierarchy and made classes inheritance-safe.
|
||||
!!! Removed ZObject inheritance hierarchy and made classes inheritance-safe.
|
||||
-Added ZImage<-->ZImage drawing in OpenFromImage.
|
||||
-Added ZImage::Draw(int,int) and ZImage::DrawRotated(float,float,float).
|
||||
-New ZRect constructor (construct from SDL_Rect).
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Doxyfile 1.3-rc2
|
||||
# Doxyfile 1.3
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
# General configuration options
|
||||
@ -7,6 +7,7 @@ PROJECT_NAME = ZEngine
|
||||
PROJECT_NUMBER = 0.8.3
|
||||
OUTPUT_DIRECTORY = C:\libs\ZEngine-0.8.3\doc\
|
||||
OUTPUT_LANGUAGE = English
|
||||
USE_WINDOWS_ENCODING = YES
|
||||
EXTRACT_ALL = NO
|
||||
EXTRACT_PRIVATE = YES
|
||||
EXTRACT_STATIC = YES
|
||||
@ -118,6 +119,7 @@ LATEX_HEADER =
|
||||
PDF_HYPERLINKS = NO
|
||||
USE_PDFLATEX = NO
|
||||
LATEX_BATCHMODE = NO
|
||||
LATEX_HIDE_INDICES = NO
|
||||
#---------------------------------------------------------------------------
|
||||
# configuration options related to the RTF output
|
||||
#---------------------------------------------------------------------------
|
||||
@ -188,6 +190,7 @@ DOT_PATH =
|
||||
DOTFILE_DIRS =
|
||||
MAX_DOT_GRAPH_WIDTH = 1024
|
||||
MAX_DOT_GRAPH_HEIGHT = 1024
|
||||
MAX_DOT_GRAPH_DEPTH = 0
|
||||
GENERATE_LEGEND = YES
|
||||
DOT_CLEANUP = YES
|
||||
#---------------------------------------------------------------------------
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/external/SDLGL_Util.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/external/SDLGL_Util.h</h1><div class="fragment"><pre>00001 <span class="comment">/*This code comes from testgl.c which is part of the SDL source distribution.</span>
|
||||
@ -18,9 +18,9 @@
|
||||
00010 GLuint SDL_GL_LoadTexture(SDL_Surface *surface, GLfloat *texcoord);
|
||||
00011
|
||||
00012 <span class="preprocessor">#endif //__sdlgl_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_Defines.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Defines.h</h1><a href="ZE__Defines_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,31 +16,36 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_defines_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_defines_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="comment">//Defines- undefine any of these if you dont have the indicated SDL extension//</span>
|
||||
00028
|
||||
<a name="l00030"></a><a class="code" href="ZE__Defines_8h.html#a0">00030</a> <span class="preprocessor">#define VERSION "0.8.3"</span>
|
||||
00020 <span class="preprocessor">#ifndef __ze_defines_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_defines_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="comment">//Defines- undefine any of these if you dont have the indicated SDL extension//</span>
|
||||
00024
|
||||
<a name="l00026"></a><a class="code" href="ZE__Defines_8h.html#a0">00026</a> <span class="preprocessor">#define USE_SDL_TTF</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
<a name="l00028"></a><a class="code" href="ZE__Defines_8h.html#a1">00028</a> <span class="preprocessor">#define USE_SDL_IMAGE</span>
|
||||
00029 <span class="preprocessor"></span>
|
||||
<a name="l00030"></a><a class="code" href="ZE__Defines_8h.html#a2">00030</a> <span class="preprocessor">#define USE_SDL_MIXER</span>
|
||||
00031 <span class="preprocessor"></span>
|
||||
<a name="l00033"></a><a class="code" href="ZE__Defines_8h.html#a1">00033</a> <span class="preprocessor">#define USE_SDL_TTF</span>
|
||||
00034 <span class="preprocessor"></span>
|
||||
<a name="l00035"></a><a class="code" href="ZE__Defines_8h.html#a2">00035</a> <span class="preprocessor">#define USE_SDL_IMAGE</span>
|
||||
00036 <span class="preprocessor"></span>
|
||||
<a name="l00037"></a><a class="code" href="ZE__Defines_8h.html#a3">00037</a> <span class="preprocessor">#define USE_SDL_MIXER</span>
|
||||
00038 <span class="preprocessor"></span>
|
||||
<a name="l00039"></a><a class="code" href="ZE__Defines_8h.html#a4">00039</a> <span class="preprocessor">#define USE_SDL_NET</span>
|
||||
00040 <span class="preprocessor"></span>
|
||||
<a name="l00041"></a><a class="code" href="ZE__Defines_8h.html#a5">00041</a> <span class="preprocessor">#define USE_PHYSFS</span>
|
||||
00042 <span class="preprocessor"></span>
|
||||
<a name="l00044"></a><a class="code" href="ZE__Defines_8h.html#a6">00044</a> <span class="preprocessor">#define MAX_MSG_LEN 10240</span>
|
||||
00045 <span class="preprocessor"></span>
|
||||
<a name="l00046"></a><a class="code" href="ZE__Defines_8h.html#a7">00046</a> <span class="keyword">typedef</span> <span class="keywordtype">char</span> <a class="code" href="ZE__Defines_8h.html#a7">ZByte</a>;
|
||||
00032 <span class="comment">//#define USE_SDL_NET</span>
|
||||
00034 <span class="comment"></span><span class="comment">//#define USE_PHYSFS</span>
|
||||
00035
|
||||
00036 <span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00037 <span class="preprocessor"></span>
|
||||
00038 <span class="keyword">namespace </span>ZE
|
||||
00039 {
|
||||
00040
|
||||
00042 <span class="keyword">const</span> <span class="keywordtype">int</span> MAX_MSG_LEN = 10240;
|
||||
00044 <span class="keyword">typedef</span> <span class="keywordtype">char</span> ZByte;
|
||||
00045
|
||||
00046 }
|
||||
00047
|
||||
00048 <span class="preprocessor">#endif //__ze_defines_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00048 <span class="preprocessor">#endif</span>
|
||||
00049 <span class="preprocessor"></span>
|
||||
00050 <span class="preprocessor">#endif //__ze_defines_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,54 +3,33 @@
|
||||
<title>ZE_Defines.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Defines.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__Defines_8h.html">ZE_Defines.h</a> <br>
|
||||
Description: Defines header file for ZEngine class, where all #define statements to control compilation options are placed. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Defines_8h.html">ZE_Defines.h</a>,v 1.12 2003/04/27 18:55:00 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
Definition file, holds #define statements describing optional features of ZEngine. <br>
|
||||
$ id: <a class="el" href="ZE__Defines_8h.html">ZE_Defines.h</a>,v 1.13 2003/05/07 18:38:43 cozman Exp $<br>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file, holds #define statements describing optional features of ZEngine.
|
||||
<p>
|
||||
|
||||
<p>
|
||||
<a href="ZE__Defines_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Defines</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a0" doxytag="ZE_Defines.h::VERSION"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a0">VERSION</a> "0.8.3"</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Version number.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a1" doxytag="ZE_Defines.h::USE_SDL_TTF"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a1">USE_SDL_TTF</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define to include font support.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a2" doxytag="ZE_Defines.h::USE_SDL_IMAGE"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a2">USE_SDL_IMAGE</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define to include non-bmp image file support.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a3" doxytag="ZE_Defines.h::USE_SDL_MIXER"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a3">USE_SDL_MIXER</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define to include sound support.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a4" doxytag="ZE_Defines.h::USE_SDL_NET"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a4">USE_SDL_NET</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define to include net support.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a5" doxytag="ZE_Defines.h::USE_PHYSFS"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a5">USE_PHYSFS</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define to use the Physfs file system.</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a6" doxytag="ZE_Defines.h::MAX_MSG_LEN"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a6">MAX_MSG_LEN</a> 10240</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Maximum message length (for SDL_net). (10kb [10240] default).</em></font><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Typedefs</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a7" doxytag="ZE_Defines.h::ZByte"></a>
|
||||
typedef char </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a7">ZByte</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Define a ZByte as a plain char (for SDL_net).</em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a0" doxytag="ZE_Defines.h::USE_SDL_TTF"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a0">USE_SDL_TTF</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Define to include font support.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a1" doxytag="ZE_Defines.h::USE_SDL_IMAGE"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a1">USE_SDL_IMAGE</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Define to include non-bmp image file support.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="a2" doxytag="ZE_Defines.h::USE_SDL_MIXER"></a>
|
||||
#define </td><td valign=bottom><a class="el" href="ZE__Defines_8h.html#a2">USE_SDL_MIXER</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Define to include sound support.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_Includes.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Includes.h</h1><a href="ZE__Includes_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,48 +16,41 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00025 <span class="preprocessor">#ifndef __ze_includes_h__</span>
|
||||
00026 <span class="preprocessor"></span><span class="preprocessor">#define __ze_includes_h__</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00029
|
||||
00030 <span class="preprocessor">#include "SDL.h"</span>
|
||||
00031 <span class="preprocessor">#include "SDL_opengl.h"</span>
|
||||
00032 <span class="preprocessor">#include "external/SDLGL_Util.h"</span>
|
||||
00033 <span class="preprocessor">#ifdef USE_SDL_IMAGE</span>
|
||||
00034 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_image.h"</span>
|
||||
00035 <span class="preprocessor">#endif</span>
|
||||
00036 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00037 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_ttf.h"</span>
|
||||
00038 <span class="preprocessor">#endif</span>
|
||||
00039 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00040 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_mixer.h"</span>
|
||||
00041 <span class="preprocessor">#endif</span>
|
||||
00042 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00043 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_net.h"</span>
|
||||
00021 <span class="preprocessor">#ifndef __ze_includes_h__</span>
|
||||
00022 <span class="preprocessor"></span><span class="preprocessor">#define __ze_includes_h__</span>
|
||||
00023 <span class="preprocessor"></span>
|
||||
00024 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00025
|
||||
00026 <span class="preprocessor">#include "SDL.h"</span>
|
||||
00027 <span class="preprocessor">#include "SDL_opengl.h"</span>
|
||||
00028 <span class="preprocessor">#include "external/SDLGL_Util.h"</span>
|
||||
00029 <span class="preprocessor">#ifdef USE_SDL_IMAGE</span>
|
||||
00030 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_image.h"</span>
|
||||
00031 <span class="preprocessor">#endif</span>
|
||||
00032 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00033 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_ttf.h"</span>
|
||||
00034 <span class="preprocessor">#endif</span>
|
||||
00035 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00036 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_mixer.h"</span>
|
||||
00037 <span class="preprocessor">#endif</span>
|
||||
00038 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00039 <span class="preprocessor"></span><span class="preprocessor">#include "SDL_net.h"</span>
|
||||
00040 <span class="preprocessor">#endif</span>
|
||||
00041 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_PHYSFS</span>
|
||||
00042 <span class="preprocessor"></span><span class="preprocessor">#include "physfs.h"</span>
|
||||
00043 <span class="preprocessor">#include "external/physfsrwops.h"</span>
|
||||
00044 <span class="preprocessor">#endif</span>
|
||||
00045 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_PHYSFS</span>
|
||||
00046 <span class="preprocessor"></span><span class="preprocessor">#include "physfs.h"</span>
|
||||
00047 <span class="preprocessor">#include "external/physfsrwops.h"</span>
|
||||
00048 <span class="preprocessor">#endif</span>
|
||||
00049 <span class="preprocessor"></span><span class="preprocessor">#include "external/mt19937ar.h"</span>
|
||||
00050
|
||||
00051 <span class="preprocessor">#include <string></span>
|
||||
00052 <span class="preprocessor">#include <vector></span>
|
||||
00053 <span class="preprocessor">#include <queue></span>
|
||||
00054 <span class="preprocessor">#include <list></span>
|
||||
00055 <span class="preprocessor">#include <fstream></span>
|
||||
00056 <span class="preprocessor">#include <cstdio></span>
|
||||
00057 <span class="preprocessor">#include <cstdlib></span>
|
||||
00058 <span class="preprocessor">#include <cstdarg></span>
|
||||
00059 <span class="preprocessor">#include <cctype></span>
|
||||
00060 <span class="preprocessor">#include <ctime></span>
|
||||
00061 <span class="keyword">using</span> <span class="keyword">namespace </span>std;
|
||||
00062
|
||||
00063 <span class="preprocessor">#endif //__ze_includes_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00045 <span class="preprocessor"></span>
|
||||
00046 <span class="preprocessor">#include <string></span> <span class="comment">//used frequently</span>
|
||||
00047 <span class="preprocessor">#include <queue></span> <span class="comment">//used by ZEngine for ZErrors</span>
|
||||
00048 <span class="preprocessor">#include <list></span> <span class="comment">//used by ZConfigFile</span>
|
||||
00049 <span class="preprocessor">#include <fstream></span> <span class="comment">//used by ZConfigFile</span>
|
||||
00050 <span class="preprocessor">#include <cctype></span> <span class="comment">//used in parsing</span>
|
||||
00051
|
||||
00052 <span class="preprocessor">#endif //__ze_includes_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,13 @@
|
||||
<title>ZE_Includes.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Includes.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__Includes_8h.html">ZE_Includes.h</a> <br>
|
||||
Description: Header file for ZEngine universal includes. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Includes_8h.html">ZE_Includes.h</a>,v 1.8 2003/04/27 22:05:25 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
ZE_*.h files should only include this file and any other ZE_*.h files that they need, External Library or C/C++ Standard Library files should be included from within this file. $ id: <a class="el" href="ZE__Includes_8h.html">ZE_Includes.h</a>,v 1.8 2003/04/27 22:05:25 cozman Exp $<br>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
ZE_*.h files should only include this file and any other ZE_*.h files that they need, External Library or C/C++ Standard Library files should be included from within this file.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Defines_8h-source.html">ZE_Defines.h</a>"</code><br>
|
||||
<code>#include "SDL.h"</code><br>
|
||||
@ -24,30 +18,19 @@ ZE_*.h files should only include this file and any other ZE_*.h files that they
|
||||
<code>#include "SDL_image.h"</code><br>
|
||||
<code>#include "SDL_ttf.h"</code><br>
|
||||
<code>#include "SDL_mixer.h"</code><br>
|
||||
<code>#include "SDL_net.h"</code><br>
|
||||
<code>#include "physfs.h"</code><br>
|
||||
<code>#include "external/physfsrwops.h"</code><br>
|
||||
<code>#include "external/mt19937ar.h"</code><br>
|
||||
<code>#include <string></code><br>
|
||||
<code>#include <vector></code><br>
|
||||
<code>#include <queue></code><br>
|
||||
<code>#include <list></code><br>
|
||||
<code>#include <fstream></code><br>
|
||||
<code>#include <cstdio></code><br>
|
||||
<code>#include <cstdlib></code><br>
|
||||
<code>#include <cstdarg></code><br>
|
||||
<code>#include <cctype></code><br>
|
||||
<code>#include <ctime></code><br>
|
||||
|
||||
<p>
|
||||
<a href="ZE__Includes_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><b>std</b></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_Utility.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_Utility.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__Utility_8cpp.html">ZE_Utility.cpp</a> <br>
|
||||
Description: Implementation source file for ZEngine Utilities. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Utility_8cpp.html">ZE_Utility.cpp</a>,v 1.5 2003/04/28 02:01:20 cozman Exp </dd></dl>
|
||||
Source file containing open utilities for use inside and alongside ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Utility_8cpp.html">ZE_Utility.cpp</a>,v 1.9 2003/06/11 05:51:15 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Source file containing open utilities for use inside and alongside ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Utility_8h-source.html">ZE_Utility.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Source file containing open utilities for use inside and alongside ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_Utility.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Utility.h</h1><a href="ZE__Utility_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,41 +16,40 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00025 <span class="preprocessor">#ifndef __ze_utility_h__</span>
|
||||
00026 <span class="preprocessor"></span><span class="preprocessor">#define __ze_utility_h__</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__Includes_8h.html">ZE_Includes.h</a>"</span>
|
||||
00022 <span class="preprocessor">#ifndef __ze_utility_h__</span>
|
||||
00023 <span class="preprocessor"></span><span class="preprocessor">#define __ze_utility_h__</span>
|
||||
00024 <span class="preprocessor"></span>
|
||||
00025 <span class="preprocessor">#include "<a class="code" href="ZE__Includes_8h.html">ZE_Includes.h</a>"</span>
|
||||
00026
|
||||
<a name="l00027"></a><a class="code" href="namespaceZE.html">00027</a> <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
<a name="l00030"></a><a class="code" href="namespaceZE.html">00030</a> <span class="keyword">namespace </span>ZE
|
||||
00031 {
|
||||
00032
|
||||
00042 string <a class="code" href="namespaceZE.html#a19">FormatStr</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *fmtstr, ...);
|
||||
00043
|
||||
00045 <span class="comment">//Memory//</span>
|
||||
00047 <span class="comment"></span>
|
||||
00054 <span class="comment"></span><span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a20">FreeImage</a>(SDL_Surface *&image);
|
||||
00055
|
||||
00056 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00057 <span class="preprocessor"></span>
|
||||
00064 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a21">FreeSound</a>(Mix_Chunk *&chunk);
|
||||
00065
|
||||
00072 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a22">FreeMusic</a>(Mix_Music *&music);
|
||||
00073
|
||||
00074 <span class="preprocessor">#endif</span>
|
||||
00075 <span class="preprocessor"></span>
|
||||
00076 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00077 <span class="preprocessor"></span>
|
||||
00083 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a23">FreeFont</a>(TTF_Font *&font);
|
||||
00084 <span class="preprocessor">#endif</span>
|
||||
00085 <span class="preprocessor"></span>
|
||||
00086
|
||||
00087 }
|
||||
00088
|
||||
00089 <span class="preprocessor">#endif //__ze_utility_h__</span>
|
||||
00090 <span class="preprocessor"></span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00039 std::string <a class="code" href="namespaceZE.html#a19">FormatStr</a>(<span class="keyword">const</span> <span class="keywordtype">char</span> *fmtstr, ...);
|
||||
00040
|
||||
00042 <span class="comment">//Memory//</span>
|
||||
00044 <span class="comment"></span>
|
||||
00051 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a20">FreeImage</a>(SDL_Surface *&image);
|
||||
00052
|
||||
00053 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00054 <span class="preprocessor"></span>
|
||||
00061 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a21">FreeSound</a>(Mix_Chunk *&chunk);
|
||||
00062
|
||||
00069 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a22">FreeMusic</a>(Mix_Music *&music);
|
||||
00070
|
||||
00071 <span class="preprocessor">#endif</span>
|
||||
00072 <span class="preprocessor"></span>
|
||||
00073 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00074 <span class="preprocessor"></span>
|
||||
00080 <span class="keywordtype">void</span> <a class="code" href="namespaceZE.html#a23">FreeFont</a>(TTF_Font *&font);
|
||||
00081 <span class="preprocessor">#endif</span>
|
||||
00082 <span class="preprocessor"></span>
|
||||
00083 }
|
||||
00084
|
||||
00085 <span class="preprocessor">#endif //__ze_utility_h__</span>
|
||||
00086 <span class="preprocessor"></span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_Utility.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_Utility.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__Utility_8h.html">ZE_Utility.h</a> <br>
|
||||
Description: Header file for ZEngine Utilities. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Utility_8h.html">ZE_Utility.h</a>,v 1.2 2003/04/28 02:01:20 cozman Exp </dd></dl>
|
||||
Definition file for ZEngine Utilities which are used throughout the engine and can be used in conjunction with ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__Utility_8h.html">ZE_Utility.h</a>,v 1.5 2003/06/11 00:15:25 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZEngine Utilities which are used throughout the engine and can be used in conjunction with ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Includes_8h-source.html">ZE_Includes.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZEngine Utilities which are used throughout the engine and c
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,23 @@
|
||||
<title>ZE_ZClient.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZClient.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZClient_8cpp.html">ZE_ZClient.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine TCP Client Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZClient_8cpp.html">ZE_ZClient.cpp</a>,v 1.5 2003/04/27 19:12:48 cozman Exp </dd></dl>
|
||||
Implementation file for ZClient, the TCP Client class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZClient_8cpp.html">ZE_ZClient.cpp</a>,v 1.11 2003/06/16 21:17:22 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation file for ZClient, the TCP Client class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZClient_8h-source.html">ZE_ZClient.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZClient.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZClient.h</h1><a href="ZE__ZClient_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,53 +16,53 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zclient_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zclient_h__</span>
|
||||
00020 <span class="preprocessor">#ifndef __ze_zclient_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zclient_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00030 <span class="preprocessor"></span>
|
||||
00031 <span class="keyword">namespace </span>ZE
|
||||
00032 {
|
||||
00033
|
||||
<a name="l00040"></a><a class="code" href="classZE_1_1ZClient.html">00040</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZClient.html">ZClient</a>
|
||||
00041 {
|
||||
00042 <span class="keyword">protected</span>:
|
||||
<a name="l00044"></a><a class="code" href="classZE_1_1ZClient.html#n0">00044</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a> *<a class="code" href="classZE_1_1ZClient.html#n0">rEngine</a>;
|
||||
<a name="l00046"></a><a class="code" href="classZE_1_1ZClient.html#n1">00046</a> TCPsocket <a class="code" href="classZE_1_1ZClient.html#n1">rSocket</a>;
|
||||
<a name="l00048"></a><a class="code" href="classZE_1_1ZClient.html#n2">00048</a> SDLNet_SocketSet <a class="code" href="classZE_1_1ZClient.html#n2">rSocketSet</a>;
|
||||
<a name="l00050"></a><a class="code" href="classZE_1_1ZClient.html#n3">00050</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZClient.html#n3">rVerbose</a>;
|
||||
<a name="l00052"></a><a class="code" href="classZE_1_1ZClient.html#n4">00052</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZClient.html#n4">rWaitTime</a>;
|
||||
00053
|
||||
00054 <span class="keyword">public</span>:
|
||||
00061 <a class="code" href="classZE_1_1ZClient.html#a0">ZClient</a>(<span class="keywordtype">bool</span> verbose=<span class="keyword">false</span>);
|
||||
00062
|
||||
00068 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZClient.html#a1">~ZClient</a>();
|
||||
00069
|
||||
00078 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZClient.html#a2">Connect</a>(<span class="keywordtype">char</span> *server, Uint16 port);
|
||||
00079
|
||||
00085 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZClient.html#a3">Disconnect</a>();
|
||||
00086
|
||||
00094 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZClient.html#a4">SetWaitTime</a>(<span class="keywordtype">int</span> wait);
|
||||
00095
|
||||
00104 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZClient.html#a5">Send</a>(ZByte *data, <span class="keywordtype">int</span> size);
|
||||
00105
|
||||
00113 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZClient.html#a6">Receive</a>(ZByte *data);
|
||||
00114
|
||||
00121 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZClient.html#a7">Connected</a>();
|
||||
00122
|
||||
00129 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZClient.html#a8">WaitTime</a>();
|
||||
00130 };
|
||||
00131
|
||||
00132 } <span class="comment">//namespace ZE</span>
|
||||
00133
|
||||
00134 <span class="preprocessor">#endif //USE_SDL_NET</span>
|
||||
00135 <span class="preprocessor"></span>
|
||||
00136 <span class="preprocessor">#endif //__ze_zclient_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00027 <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
00036 <span class="keyword">class </span>ZClient
|
||||
00037 {
|
||||
00038 <span class="keyword">protected</span>:
|
||||
00040 ZEngine *rEngine;
|
||||
00042 TCPsocket rSocket;
|
||||
00044 SDLNet_SocketSet rSocketSet;
|
||||
00046 <span class="keywordtype">bool</span> rVerbose;
|
||||
00048 <span class="keywordtype">int</span> rWaitTime;
|
||||
00049
|
||||
00050 <span class="keyword">public</span>:
|
||||
00057 ZClient(<span class="keywordtype">bool</span> verbose=<span class="keyword">false</span>);
|
||||
00058
|
||||
00064 <span class="keyword">virtual</span> ~ZClient();
|
||||
00065
|
||||
00074 <span class="keywordtype">bool</span> Connect(<span class="keywordtype">char</span> *server, Uint16 port);
|
||||
00075
|
||||
00081 <span class="keywordtype">void</span> Disconnect();
|
||||
00082
|
||||
00090 <span class="keywordtype">void</span> SetWaitTime(<span class="keywordtype">int</span> wait);
|
||||
00091
|
||||
00100 <span class="keywordtype">bool</span> Send(ZByte *data, <span class="keywordtype">int</span> size);
|
||||
00101
|
||||
00109 <span class="keywordtype">int</span> Receive(ZByte *data);
|
||||
00110
|
||||
00117 <span class="keywordtype">bool</span> Connected();
|
||||
00118
|
||||
00125 <span class="keywordtype">int</span> WaitTime();
|
||||
00126 };
|
||||
00127
|
||||
00128 } <span class="comment">//namespace ZE</span>
|
||||
00129
|
||||
00130 <span class="preprocessor">#endif //USE_SDL_NET</span>
|
||||
00131 <span class="preprocessor"></span>
|
||||
00132 <span class="preprocessor">#endif //__ze_zclient_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,31 +3,25 @@
|
||||
<title>ZE_ZClient.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZClient.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZClient_8h.html">ZE_ZClient.h</a> <br>
|
||||
Description: Header file for core ZEngine TCP Client Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZClient_8h.html">ZE_ZClient.h</a>,v 1.4 2003/04/27 22:05:25 cozman Exp </dd></dl>
|
||||
Definition file for ZClient, the TCP Client class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZClient_8h.html">ZE_ZClient.h</a>,v 1.6 2003/05/13 01:30:51 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZClient, the TCP Client class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
<p>
|
||||
<a href="ZE__ZClient_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZConfigFile.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZConfigFile.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZConfigFile_8cpp.html">ZE_ZConfigFile.cpp</a> <br>
|
||||
Description: Implementation source file for ZConfigFile, the ZEngine INI-Style Config File. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZConfigFile_8cpp.html">ZE_ZConfigFile.cpp</a>,v 1.7 2003/04/08 03:30:50 cozman Exp </dd></dl>
|
||||
Implementation of ZConfigFile, the ZEngine INI-Style Config File. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZConfigFile_8cpp.html">ZE_ZConfigFile.cpp</a>,v 1.13 2003/06/16 07:45:03 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZConfigFile, the ZEngine INI-Style Config File.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZConfigFile_8h-source.html">ZE_ZConfigFile.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Implementation of ZConfigFile, the ZEngine INI-Style Config File.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZConfigFile.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZConfigFile.h</h1><a href="ZE__ZConfigFile_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,85 +16,85 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00025 <span class="preprocessor">#ifndef __ze_zconfigfile_h__</span>
|
||||
00026 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zconfigfile_h__</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00029
|
||||
00030 <span class="keyword">namespace </span>ZE
|
||||
00031 {
|
||||
00032
|
||||
<a name="l00038"></a><a class="code" href="classZE_1_1ZConfigFile.html">00038</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile.html">ZConfigFile</a>
|
||||
00039 {
|
||||
00040 <span class="keyword">private</span>:
|
||||
00041
|
||||
00042 <span class="comment">//Private Types//</span>
|
||||
00043
|
||||
<a name="l00050"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">00050</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZCF_Variable</a>
|
||||
00051 {
|
||||
00052 <span class="keyword">public</span>:
|
||||
<a name="l00054"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">00054</a> string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">var</a>;
|
||||
<a name="l00056"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">00056</a> string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">val</a>;
|
||||
00057 };
|
||||
00058
|
||||
<a name="l00064"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">00064</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZCF_Section</a>
|
||||
00065 {
|
||||
00066 <span class="keyword">public</span>:
|
||||
<a name="l00068"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">00068</a> string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">section</a>;
|
||||
<a name="l00070"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">00070</a> list<ZCF_Variable> <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">varList</a>;
|
||||
00071 };
|
||||
00072
|
||||
00073 <span class="keyword">protected</span>:
|
||||
<a name="l00075"></a><a class="code" href="classZE_1_1ZConfigFile.html#n0">00075</a> list<ZCF_Section> <a class="code" href="classZE_1_1ZConfigFile.html#n0">rFileLayout</a>;
|
||||
<a name="l00077"></a><a class="code" href="classZE_1_1ZConfigFile.html#n1">00077</a> string <a class="code" href="classZE_1_1ZConfigFile.html#n1">rFilename</a>;
|
||||
00078
|
||||
00086 string <a class="code" href="classZE_1_1ZConfigFile.html#b0">CleanString</a>(string str) <span class="keyword">const</span>;
|
||||
00087
|
||||
00095 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(string sec) <span class="keyword">const</span>;
|
||||
00096
|
||||
00105 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(string sec, string var) <span class="keyword">const</span>;
|
||||
00106
|
||||
00115 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a>(string sec, string var, string val);
|
||||
00116
|
||||
00126 string <a class="code" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a>(string sec, string var, string defVal) <span class="keyword">const</span>;
|
||||
00127
|
||||
00128 <span class="keyword">public</span>:
|
||||
00129
|
||||
00135 <a class="code" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a>();
|
||||
00136
|
||||
00143 <a class="code" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a>(string filename);
|
||||
00144
|
||||
00150 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZConfigFile.html#a2">~ZConfigFile</a>();
|
||||
00151
|
||||
00158 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a3">Process</a>(string filename);
|
||||
00159
|
||||
00170 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a>(string section, string var, <span class="keywordtype">float</span> defVal) <span class="keyword">const</span>;
|
||||
00171
|
||||
00181 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZConfigFile.html#a5">GetInt</a>(string section, string var, <span class="keywordtype">int</span> defVal) <span class="keyword">const</span>;
|
||||
00182
|
||||
00193 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#a6">GetBool</a>(string section, string var, <span class="keywordtype">bool</span> defVal) <span class="keyword">const</span>;
|
||||
00194
|
||||
00204 string <a class="code" href="classZE_1_1ZConfigFile.html#a7">GetString</a>(string section, string var, string defVal) <span class="keyword">const</span>;
|
||||
00205
|
||||
00216 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a>(string section, string var, <span class="keywordtype">float</span> val);
|
||||
00217
|
||||
00227 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a9">SetInt</a>(string section, string var, <span class="keywordtype">int</span> val);
|
||||
00228
|
||||
00238 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a10">SetBool</a>(string section, string var, <span class="keywordtype">bool</span> val);
|
||||
00239
|
||||
00249 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a11">SetString</a>(string section, string var, string val);
|
||||
00250
|
||||
00256 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a12">Flush</a>();
|
||||
00257
|
||||
00263 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a13">Close</a>();
|
||||
00264 };
|
||||
00265
|
||||
00266 }
|
||||
00267
|
||||
00268 <span class="preprocessor">#endif //__ze_zconfigfile_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00021 <span class="preprocessor">#ifndef __ze_zconfigfile_h__</span>
|
||||
00022 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zconfigfile_h__</span>
|
||||
00023 <span class="preprocessor"></span>
|
||||
00024 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00025
|
||||
00026 <span class="keyword">namespace </span>ZE
|
||||
00027 {
|
||||
00028
|
||||
<a name="l00034"></a><a class="code" href="classZE_1_1ZConfigFile.html">00034</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile.html">ZConfigFile</a>
|
||||
00035 {
|
||||
00036 <span class="keyword">private</span>:
|
||||
00037
|
||||
00038 <span class="comment">//Private Types//</span>
|
||||
00039
|
||||
<a name="l00046"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">00046</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZCF_Variable</a>
|
||||
00047 {
|
||||
00048 <span class="keyword">public</span>:
|
||||
<a name="l00050"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">00050</a> std::string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">var</a>;
|
||||
<a name="l00052"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">00052</a> std::string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">val</a>;
|
||||
00053 };
|
||||
00054
|
||||
<a name="l00060"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">00060</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZCF_Section</a>
|
||||
00061 {
|
||||
00062 <span class="keyword">public</span>:
|
||||
<a name="l00064"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">00064</a> std::string <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">section</a>;
|
||||
<a name="l00066"></a><a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">00066</a> std::list<ZCF_Variable> <a class="code" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">varList</a>;
|
||||
00067 };
|
||||
00068
|
||||
00069 <span class="keyword">protected</span>:
|
||||
<a name="l00071"></a><a class="code" href="classZE_1_1ZConfigFile.html#n0">00071</a> std::list<ZCF_Section> <a class="code" href="classZE_1_1ZConfigFile.html#n0">rFileLayout</a>;
|
||||
<a name="l00073"></a><a class="code" href="classZE_1_1ZConfigFile.html#n1">00073</a> std::string <a class="code" href="classZE_1_1ZConfigFile.html#n1">rFilename</a>;
|
||||
00074
|
||||
00082 std::string <a class="code" href="classZE_1_1ZConfigFile.html#b0">CleanString</a>(std::string str) <span class="keyword">const</span>;
|
||||
00083
|
||||
00091 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(std::string sec) <span class="keyword">const</span>;
|
||||
00092
|
||||
00101 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(std::string sec, std::string var) <span class="keyword">const</span>;
|
||||
00102
|
||||
00111 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a>(std::string sec, std::string var, std::string val);
|
||||
00112
|
||||
00122 std::string <a class="code" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a>(std::string sec, std::string var, std::string defVal) <span class="keyword">const</span>;
|
||||
00123
|
||||
00124 <span class="keyword">public</span>:
|
||||
00125
|
||||
00131 <a class="code" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a>();
|
||||
00132
|
||||
00139 <a class="code" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a>(std::string filename);
|
||||
00140
|
||||
00146 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZConfigFile.html#a2">~ZConfigFile</a>();
|
||||
00147
|
||||
00154 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a3">Process</a>(std::string filename);
|
||||
00155
|
||||
00166 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a>(std::string section, std::string var, <span class="keywordtype">float</span> defVal) <span class="keyword">const</span>;
|
||||
00167
|
||||
00177 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZConfigFile.html#a5">GetInt</a>(std::string section, std::string var, <span class="keywordtype">int</span> defVal) <span class="keyword">const</span>;
|
||||
00178
|
||||
00189 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZConfigFile.html#a6">GetBool</a>(std::string section, std::string var, <span class="keywordtype">bool</span> defVal) <span class="keyword">const</span>;
|
||||
00190
|
||||
00200 std::string <a class="code" href="classZE_1_1ZConfigFile.html#a7">GetString</a>(std::string section, std::string var, std::string defVal) <span class="keyword">const</span>;
|
||||
00201
|
||||
00212 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a>(std::string section, std::string var, <span class="keywordtype">float</span> val);
|
||||
00213
|
||||
00223 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a9">SetInt</a>(std::string section, std::string var, <span class="keywordtype">int</span> val);
|
||||
00224
|
||||
00234 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a10">SetBool</a>(std::string section, std::string var, <span class="keywordtype">bool</span> val);
|
||||
00235
|
||||
00245 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a11">SetString</a>(std::string section, std::string var, std::string val);
|
||||
00246
|
||||
00252 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a12">Flush</a>();
|
||||
00253
|
||||
00259 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZConfigFile.html#a13">Close</a>();
|
||||
00260 };
|
||||
00261
|
||||
00262 }
|
||||
00263
|
||||
00264 <span class="preprocessor">#endif //__ze_zconfigfile_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,13 @@
|
||||
<title>ZE_ZConfigFile.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZConfigFile.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: Types/ZE_ZConfigFile.h <br>
|
||||
Description: Header file for ZEngine INI-Style Config Files.<br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZConfigFile_8h.html">ZE_ZConfigFile.h</a>,v 1.9 2003/02/10 04:40:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
Definition file for ZConfigFile, an INI-style config file format.<br>
|
||||
$ id: <a class="el" href="ZE__ZConfigFile_8h.html">ZE_ZConfigFile.h</a>,v 1.9 2003/02/10 04:40:16 cozman Exp $ <dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZConfigFile, an INI-style Config format.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +19,9 @@ Definition file for ZConfigFile, an INI-style Config format.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZEngine.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZEngine.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZEngine_8cpp.html">ZE_ZEngine.cpp</a> <br>
|
||||
Description: Implementation source file for ZEngine library main singleton class. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZEngine_8cpp.html">ZE_ZEngine.cpp</a>,v 1.38 2003/04/28 00:23:06 cozman Exp </dd></dl>
|
||||
Actual implementation of ZEngine singleton class, the core of ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZEngine_8cpp.html">ZE_ZEngine.cpp</a>,v 1.47 2003/06/16 07:45:03 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Actual implementation of ZEngine singleton class, the core of ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Actual implementation of ZEngine singleton class, the core of ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZEngine.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZEngine.h</h1><a href="ZE__ZEngine_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,223 +16,235 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zengine_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zengine_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00029 <span class="preprocessor">#include "<a class="code" href="ZE__Includes_8h.html">ZE_Includes.h</a>"</span>
|
||||
00030 <span class="preprocessor">#include "<a class="code" href="ZE__ZError_8h.html">ZE_ZError.h</a>"</span>
|
||||
00020 <span class="comment">//revision on this is so high.. can this be lowered?</span>
|
||||
00021
|
||||
00022 <span class="preprocessor">#ifndef __ze_zengine_h__</span>
|
||||
00023 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zengine_h__</span>
|
||||
00024 <span class="preprocessor"></span>
|
||||
00025 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00026 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__Includes_8h.html">ZE_Includes.h</a>"</span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__ZError_8h.html">ZE_ZError.h</a>"</span>
|
||||
00029 <span class="preprocessor">#include "<a class="code" href="ZE__ZRandGen_8h.html">ZE_ZRandGen.h</a>"</span>
|
||||
00030 <span class="preprocessor">#include "<a class="code" href="VersionInfo_8h.html">VersionInfo.h</a>"</span>
|
||||
00031
|
||||
00037 <span class="keyword">namespace </span>ZE
|
||||
00038 {
|
||||
00039
|
||||
<a name="l00046"></a><a class="code" href="classZE_1_1ZEngine.html">00046</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>
|
||||
00047 {
|
||||
00048
|
||||
00049 <span class="keyword">private</span>:
|
||||
00051 <span class="keyword">static</span> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a> *<a class="code" href="classZE_1_1ZEngine.html#r0">sInstance</a>;
|
||||
<a name="l00053"></a><a class="code" href="classZE_1_1ZEngine.html#o0">00053</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o0">mWidth</a>;
|
||||
<a name="l00055"></a><a class="code" href="classZE_1_1ZEngine.html#o1">00055</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o1">mHeight</a>;
|
||||
<a name="l00057"></a><a class="code" href="classZE_1_1ZEngine.html#o2">00057</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o2">mBPP</a>;
|
||||
<a name="l00059"></a><a class="code" href="classZE_1_1ZEngine.html#o3">00059</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o3">mFullscreen</a>;
|
||||
<a name="l00061"></a><a class="code" href="classZE_1_1ZEngine.html#o4">00061</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o4">mInitialized</a>;
|
||||
<a name="l00063"></a><a class="code" href="classZE_1_1ZEngine.html#o5">00063</a> SDL_Surface *<a class="code" href="classZE_1_1ZEngine.html#o5">mScreen</a>;
|
||||
<a name="l00065"></a><a class="code" href="classZE_1_1ZEngine.html#o6">00065</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o6">mPaused</a>;
|
||||
<a name="l00067"></a><a class="code" href="classZE_1_1ZEngine.html#o7">00067</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o7">mUnpauseOnActive</a>;
|
||||
<a name="l00069"></a><a class="code" href="classZE_1_1ZEngine.html#o8">00069</a> Uint8 <a class="code" href="classZE_1_1ZEngine.html#o8">mDesiredFramerate</a>;
|
||||
<a name="l00071"></a><a class="code" href="classZE_1_1ZEngine.html#o9">00071</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o9">mNextUpdate</a>;
|
||||
<a name="l00073"></a><a class="code" href="classZE_1_1ZEngine.html#o10">00073</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o10">mLastPause</a>;
|
||||
<a name="l00075"></a><a class="code" href="classZE_1_1ZEngine.html#o11">00075</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o11">mPausedTime</a>;
|
||||
<a name="l00077"></a><a class="code" href="classZE_1_1ZEngine.html#o12">00077</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o12">mLastTime</a>;
|
||||
<a name="l00079"></a><a class="code" href="classZE_1_1ZEngine.html#o13">00079</a> <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#o13">mSecPerFrame</a>;
|
||||
<a name="l00081"></a><a class="code" href="classZE_1_1ZEngine.html#o14">00081</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o14">mNeedReload</a>;
|
||||
<a name="l00083"></a><a class="code" href="classZE_1_1ZEngine.html#o15">00083</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o15">mActive</a>;
|
||||
<a name="l00085"></a><a class="code" href="classZE_1_1ZEngine.html#o16">00085</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o16">mQuit</a>;
|
||||
<a name="l00087"></a><a class="code" href="classZE_1_1ZEngine.html#o17">00087</a> Uint8 *<a class="code" href="classZE_1_1ZEngine.html#o17">mKeyIsPressed</a>;
|
||||
<a name="l00089"></a><a class="code" href="classZE_1_1ZEngine.html#o18">00089</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o18">mKeyPress</a>[SDLK_LAST];
|
||||
<a name="l00091"></a><a class="code" href="classZE_1_1ZEngine.html#o19">00091</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o19">mMouseX</a>;
|
||||
<a name="l00093"></a><a class="code" href="classZE_1_1ZEngine.html#o20">00093</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o20">mMouseY</a>;
|
||||
<a name="l00095"></a><a class="code" href="classZE_1_1ZEngine.html#o21">00095</a> Uint8 <a class="code" href="classZE_1_1ZEngine.html#o21">mMouseB</a>;
|
||||
<a name="l00097"></a><a class="code" href="classZE_1_1ZEngine.html#o22">00097</a> queue<ZError> <a class="code" href="classZE_1_1ZEngine.html#o22">mErrorQueue</a>;
|
||||
<a name="l00099"></a><a class="code" href="classZE_1_1ZEngine.html#o23">00099</a> <a class="code" href="classZE_1_1ZError.html">ZError</a> <a class="code" href="classZE_1_1ZEngine.html#o23">mCurError</a>;
|
||||
<a name="l00101"></a><a class="code" href="classZE_1_1ZEngine.html#o24">00101</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o24">mLogAllErrors</a>;
|
||||
<a name="l00103"></a><a class="code" href="classZE_1_1ZEngine.html#o25">00103</a> FILE *<a class="code" href="classZE_1_1ZEngine.html#o25">mErrlog</a>;
|
||||
00104
|
||||
00105 <span class="preprocessor">#ifdef USE_SDL_MIXER </span>
|
||||
00106 <span class="preprocessor"></span>
|
||||
<a name="l00107"></a><a class="code" href="classZE_1_1ZEngine.html#o26">00107</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o26">mRate</a>;
|
||||
<a name="l00109"></a><a class="code" href="classZE_1_1ZEngine.html#o27">00109</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o27">mStereo</a>;
|
||||
00110 <span class="preprocessor">#endif </span>
|
||||
00111 <span class="preprocessor"></span>
|
||||
00113 <span class="comment">//Singleton + Memory Management//</span>
|
||||
00115 <span class="comment"></span>
|
||||
00116 <span class="keyword">private</span>:
|
||||
00122 <a class="code" href="classZE_1_1ZEngine.html#c0">ZEngine</a>();
|
||||
00123
|
||||
00124 <span class="keyword">public</span>:
|
||||
00125
|
||||
00132 <span class="keyword">static</span> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZEngine.html#d0">GetInstance</a>();
|
||||
00133
|
||||
00139 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#d1">ReleaseInstance</a>();
|
||||
00048 <span class="keyword">public</span>:
|
||||
00050 <span class="keyword">static</span> <a class="code" href="classVersionInfo.html">VersionInfo</a> <a class="code" href="classZE_1_1ZEngine.html#p0">Version</a>;
|
||||
00051
|
||||
00052 <span class="keyword">private</span>:
|
||||
00054 <span class="keyword">static</span> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a> *<a class="code" href="classZE_1_1ZEngine.html#r0">sInstance</a>;
|
||||
<a name="l00056"></a><a class="code" href="classZE_1_1ZEngine.html#o0">00056</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o0">mWidth</a>;
|
||||
<a name="l00058"></a><a class="code" href="classZE_1_1ZEngine.html#o1">00058</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o1">mHeight</a>;
|
||||
<a name="l00060"></a><a class="code" href="classZE_1_1ZEngine.html#o2">00060</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o2">mBPP</a>;
|
||||
<a name="l00062"></a><a class="code" href="classZE_1_1ZEngine.html#o3">00062</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o3">mFullscreen</a>;
|
||||
<a name="l00064"></a><a class="code" href="classZE_1_1ZEngine.html#o4">00064</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o4">mInitialized</a>;
|
||||
<a name="l00066"></a><a class="code" href="classZE_1_1ZEngine.html#o5">00066</a> SDL_Surface *<a class="code" href="classZE_1_1ZEngine.html#o5">mScreen</a>;
|
||||
<a name="l00068"></a><a class="code" href="classZE_1_1ZEngine.html#o6">00068</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o6">mPaused</a>;
|
||||
<a name="l00070"></a><a class="code" href="classZE_1_1ZEngine.html#o7">00070</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o7">mUnpauseOnActive</a>;
|
||||
<a name="l00072"></a><a class="code" href="classZE_1_1ZEngine.html#o8">00072</a> Uint8 <a class="code" href="classZE_1_1ZEngine.html#o8">mDesiredFramerate</a>;
|
||||
<a name="l00074"></a><a class="code" href="classZE_1_1ZEngine.html#o9">00074</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o9">mNextUpdate</a>;
|
||||
<a name="l00076"></a><a class="code" href="classZE_1_1ZEngine.html#o10">00076</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o10">mLastPause</a>;
|
||||
<a name="l00078"></a><a class="code" href="classZE_1_1ZEngine.html#o11">00078</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o11">mPausedTime</a>;
|
||||
<a name="l00080"></a><a class="code" href="classZE_1_1ZEngine.html#o12">00080</a> Uint32 <a class="code" href="classZE_1_1ZEngine.html#o12">mLastTime</a>;
|
||||
<a name="l00082"></a><a class="code" href="classZE_1_1ZEngine.html#o13">00082</a> <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#o13">mSecPerFrame</a>;
|
||||
<a name="l00084"></a><a class="code" href="classZE_1_1ZEngine.html#o14">00084</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o14">mNeedReload</a>;
|
||||
<a name="l00086"></a><a class="code" href="classZE_1_1ZEngine.html#o15">00086</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o15">mActive</a>;
|
||||
<a name="l00088"></a><a class="code" href="classZE_1_1ZEngine.html#o16">00088</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o16">mQuit</a>;
|
||||
<a name="l00090"></a><a class="code" href="classZE_1_1ZEngine.html#o17">00090</a> Uint8 *<a class="code" href="classZE_1_1ZEngine.html#o17">mKeyIsPressed</a>;
|
||||
<a name="l00092"></a><a class="code" href="classZE_1_1ZEngine.html#o18">00092</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o18">mKeyPress</a>[SDLK_LAST];
|
||||
<a name="l00094"></a><a class="code" href="classZE_1_1ZEngine.html#o19">00094</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o19">mMouseX</a>;
|
||||
<a name="l00096"></a><a class="code" href="classZE_1_1ZEngine.html#o20">00096</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o20">mMouseY</a>;
|
||||
<a name="l00098"></a><a class="code" href="classZE_1_1ZEngine.html#o21">00098</a> Uint8 <a class="code" href="classZE_1_1ZEngine.html#o21">mMouseB</a>;
|
||||
<a name="l00100"></a><a class="code" href="classZE_1_1ZEngine.html#o22">00100</a> std::queue<ZError> <a class="code" href="classZE_1_1ZEngine.html#o22">mErrorQueue</a>;
|
||||
<a name="l00102"></a><a class="code" href="classZE_1_1ZEngine.html#o23">00102</a> <a class="code" href="classZE_1_1ZError.html">ZError</a> <a class="code" href="classZE_1_1ZEngine.html#o23">mCurError</a>;
|
||||
<a name="l00104"></a><a class="code" href="classZE_1_1ZEngine.html#o24">00104</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o24">mLogAllErrors</a>;
|
||||
<a name="l00106"></a><a class="code" href="classZE_1_1ZEngine.html#o25">00106</a> std::FILE *<a class="code" href="classZE_1_1ZEngine.html#o25">mErrlog</a>;
|
||||
<a name="l00108"></a><a class="code" href="classZE_1_1ZEngine.html#o26">00108</a> SDL_EventFilter <a class="code" href="classZE_1_1ZEngine.html#o26">mEventFilter</a>;
|
||||
<a name="l00110"></a><a class="code" href="classZE_1_1ZEngine.html#o27">00110</a> <a class="code" href="classZE_1_1ZRandGen.html">ZRandGen</a> <a class="code" href="classZE_1_1ZEngine.html#o27">mRandGen</a>;
|
||||
00111
|
||||
00112 <span class="preprocessor">#ifdef USE_SDL_MIXER </span>
|
||||
00113 <span class="preprocessor"></span>
|
||||
<a name="l00114"></a><a class="code" href="classZE_1_1ZEngine.html#o28">00114</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#o28">mRate</a>;
|
||||
<a name="l00116"></a><a class="code" href="classZE_1_1ZEngine.html#o29">00116</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#o29">mStereo</a>;
|
||||
00117 <span class="preprocessor">#endif </span>
|
||||
00118 <span class="preprocessor"></span>
|
||||
00120 <span class="comment">//Singleton + Memory Management//</span>
|
||||
00122 <span class="comment"></span>
|
||||
00123 <span class="keyword">private</span>:
|
||||
00129 <a class="code" href="classZE_1_1ZEngine.html#c0">ZEngine</a>();
|
||||
00130
|
||||
00131 <span class="keyword">public</span>:
|
||||
00132
|
||||
00139 <span class="keyword">static</span> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZEngine.html#d0">GetInstance</a>();
|
||||
00140
|
||||
00147 <span class="keyword">static</span> string <a class="code" href="classZE_1_1ZEngine.html#d2">GetVersion</a>();
|
||||
00148
|
||||
00150 <span class="comment">//Initialization//</span>
|
||||
00152 <span class="comment"></span>
|
||||
00163 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a0">SetupDisplay</a>(<span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height, <span class="keywordtype">int</span> bpp, <span class="keywordtype">bool</span> fullscreen);
|
||||
00164
|
||||
00165 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00166 <span class="preprocessor"></span>
|
||||
00174 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a1">SetupSound</a>(<span class="keywordtype">int</span> rate, <span class="keywordtype">bool</span> stereo);
|
||||
00175 <span class="preprocessor">#endif </span>
|
||||
00176 <span class="preprocessor"></span>
|
||||
00188 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a2">CreateDisplay</a>(string title, string icon=<span class="stringliteral">""</span>);
|
||||
00189
|
||||
00195 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a3">CloseDisplay</a>();
|
||||
00196
|
||||
00204 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a4">ToggleFullscreen</a>();
|
||||
00205
|
||||
00213 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a5">Initialized</a>();
|
||||
00214
|
||||
00216 <span class="comment">//Screen Access//</span>
|
||||
00218 <span class="comment"></span>
|
||||
00225 <span class="comment"></span> SDL_Surface *<a class="code" href="classZE_1_1ZEngine.html#a6">Display</a>();
|
||||
00226
|
||||
00233 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a7">Update</a>();
|
||||
00234
|
||||
00244 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a8">Clear</a>(<span class="keywordtype">float</span> red=0.0f, <span class="keywordtype">float</span> green=0.0f, <span class="keywordtype">float</span> blue=0.0f, <span class="keywordtype">float</span> alpha=1.0f);
|
||||
00245
|
||||
00247 <span class="comment">//OpenGL Specific Functions//</span>
|
||||
00249 <span class="comment"></span>
|
||||
00256 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a9">SetGL2D</a>();
|
||||
00257
|
||||
00259 <span class="comment">//Timer and Framerate Independent Movement//</span>
|
||||
00261 <span class="comment"></span>
|
||||
00268 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a10">Delay</a>(Uint32 milliseconds);
|
||||
00269
|
||||
00276 Uint32 <a class="code" href="classZE_1_1ZEngine.html#a11">GetTime</a>();
|
||||
00277
|
||||
00283 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a12">PauseTimer</a>();
|
||||
00284
|
||||
00290 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a13">UnpauseTimer</a>();
|
||||
00291
|
||||
00298 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a14">GetFrameTime</a>();
|
||||
00299
|
||||
00307 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a15">GetFramerate</a>();
|
||||
00308
|
||||
00318 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a16">SetDesiredFramerate</a>(Uint8 rate);
|
||||
00319
|
||||
00327 Uint8 <a class="code" href="classZE_1_1ZEngine.html#a17">GetDesiredFramerate</a>();
|
||||
00328
|
||||
00335 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a18">IsPaused</a>();
|
||||
00336
|
||||
00338 <span class="comment">//Event and Input Handling//</span>
|
||||
00340 <span class="comment"></span>
|
||||
00347 <span class="comment"></span> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a19">IsActive</a>();
|
||||
00348
|
||||
00355 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a20">RequestQuit</a>();
|
||||
00356
|
||||
00364 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a21">QuitRequested</a>();
|
||||
00365
|
||||
00370 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a22">SetReloadNeed</a>(<span class="keywordtype">bool</span> state);
|
||||
00371
|
||||
00379 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a23">ImagesNeedReload</a>();
|
||||
00380
|
||||
00389 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a24">SetKeyRepeatRate</a>(<span class="keywordtype">int</span> rate);
|
||||
00390
|
||||
00398 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a25">KeyIsPressed</a>(SDLKey key);
|
||||
00399
|
||||
00407 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a26">KeyPress</a>(SDLKey key);
|
||||
00408
|
||||
00414 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a27">HideCursor</a>();
|
||||
00415
|
||||
00421 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a28">ShowCursor</a>();
|
||||
00422
|
||||
00429 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a29">MouseX</a>();
|
||||
00430
|
||||
00437 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a30">MouseY</a>();
|
||||
00438
|
||||
00445 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a31">LButtonPressed</a>();
|
||||
00446
|
||||
00453 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a32">RButtonPressed</a>();
|
||||
00454
|
||||
00462 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a33">MouseInRect</a>(SDL_Rect *rect);
|
||||
00463
|
||||
00469 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a34">CheckEvents</a>();
|
||||
00470
|
||||
00481 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a35">SetEventFilter</a>(SDL_EventFilter filter);
|
||||
00482
|
||||
00483 <span class="preprocessor">#ifdef USE_PHYSFS</span>
|
||||
00484 <span class="preprocessor"></span>
|
||||
00485 <span class="comment">//Physfs Utilities//</span>
|
||||
00487 <span class="comment"></span>
|
||||
00493 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a36">InitPhysFS</a>(string argv);
|
||||
00494
|
||||
00501 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a37">AddPhysFSDir</a>(string dir);
|
||||
00502
|
||||
00503 <span class="preprocessor">#endif //USE_PHYSFS</span>
|
||||
00504 <span class="preprocessor"></span>
|
||||
00506 <span class="comment">//Error Logging//</span>
|
||||
00508 <span class="comment"> private:</span>
|
||||
00516 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#c1">LogError</a>(<a class="code" href="classZE_1_1ZError.html">ZError</a> error);
|
||||
00517
|
||||
00518 <span class="keyword">public</span>:
|
||||
00529 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a38">SetErrorLog</a>(<span class="keywordtype">bool</span> logAll, string logFile=<span class="stringliteral">""</span>);
|
||||
00530
|
||||
00541 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a39">ReportError</a>(ZErrorCode code, string desc=<span class="stringliteral">""</span>, string file=<span class="stringliteral">""</span>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> line=0);
|
||||
00542
|
||||
00550 <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZEngine.html#a40">GetLastError</a>();
|
||||
00551
|
||||
00559 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a41">WriteLog</a>(string str);
|
||||
00560
|
||||
00567 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a42">FlushErrors</a>();
|
||||
00568
|
||||
00570 <span class="comment">//Random Number Generation//</span>
|
||||
00572 <span class="comment"></span>
|
||||
00580 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a43">SeedRandom</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> seed);
|
||||
00581
|
||||
00590 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <a class="code" href="classZE_1_1ZEngine.html#a44">RandLong</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> max);
|
||||
00591
|
||||
00601 <span class="keywordtype">long</span> <a class="code" href="classZE_1_1ZEngine.html#a44">RandLong</a>(<span class="keywordtype">long</span> min, <span class="keywordtype">long</span> max);
|
||||
00602
|
||||
00610 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a46">RandDouble</a>();
|
||||
00611
|
||||
00621 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a46">RandDouble</a>(<span class="keywordtype">double</span> min, <span class="keywordtype">double</span> max);
|
||||
00622
|
||||
00624 <span class="comment">//Data Loading + Unloading//</span>
|
||||
00626 <span class="comment"></span>
|
||||
00633 <span class="comment"></span> SDL_Surface* <a class="code" href="classZE_1_1ZEngine.html#a48">LoadImage</a>(string filename);
|
||||
00634
|
||||
00635 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00636 <span class="preprocessor"></span>
|
||||
00643 Mix_Chunk* <a class="code" href="classZE_1_1ZEngine.html#a49">LoadSound</a>(string filename);
|
||||
00644
|
||||
00652 Mix_Music* <a class="code" href="classZE_1_1ZEngine.html#a50">LoadMusic</a>(string filename);
|
||||
00653 <span class="preprocessor">#endif</span>
|
||||
00654 <span class="preprocessor"></span>
|
||||
00655 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00656 <span class="preprocessor"></span>
|
||||
00664 TTF_Font* <a class="code" href="classZE_1_1ZEngine.html#a51">LoadFont</a>(string filename, <span class="keywordtype">int</span> size);
|
||||
00665 <span class="preprocessor">#endif </span>
|
||||
00666 <span class="preprocessor"></span>
|
||||
00668 <span class="comment">//Accessors//</span>
|
||||
00670 <span class="comment"></span>
|
||||
00677 <span class="comment"></span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a52">Width</a>();
|
||||
00678
|
||||
00685 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a53">Height</a>();
|
||||
00686
|
||||
00693 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a54">BPP</a>();
|
||||
00694
|
||||
00701 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a55">IsFullscreen</a>();
|
||||
00702 };
|
||||
00703
|
||||
00704 }
|
||||
00705
|
||||
00706 <span class="preprocessor">#endif //__ze_zengine_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00146 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#d1">ReleaseInstance</a>();
|
||||
00147
|
||||
00149 <span class="comment">//Initialization//</span>
|
||||
00151 <span class="comment"></span>
|
||||
00162 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a0">SetupDisplay</a>(<span class="keywordtype">int</span> width, <span class="keywordtype">int</span> height, <span class="keywordtype">int</span> bpp, <span class="keywordtype">bool</span> fullscreen);
|
||||
00163
|
||||
00164 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00165 <span class="preprocessor"></span>
|
||||
00173 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a1">SetupSound</a>(<span class="keywordtype">int</span> rate, <span class="keywordtype">bool</span> stereo);
|
||||
00174 <span class="preprocessor">#endif </span>
|
||||
00175 <span class="preprocessor"></span>
|
||||
00187 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a2">CreateDisplay</a>(std::string title, std::string icon=<span class="stringliteral">""</span>);
|
||||
00188
|
||||
00194 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a3">CloseDisplay</a>();
|
||||
00195
|
||||
00203 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a4">ToggleFullscreen</a>();
|
||||
00204
|
||||
00212 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a5">Initialized</a>();
|
||||
00213
|
||||
00215 <span class="comment">//Screen Access//</span>
|
||||
00217 <span class="comment"></span>
|
||||
00224 SDL_Surface *<a class="code" href="classZE_1_1ZEngine.html#a6">Display</a>();
|
||||
00225
|
||||
00232 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a7">Update</a>();
|
||||
00233
|
||||
00243 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a8">Clear</a>(<span class="keywordtype">float</span> red=0.0f, <span class="keywordtype">float</span> green=0.0f, <span class="keywordtype">float</span> blue=0.0f, <span class="keywordtype">float</span> alpha=1.0f);
|
||||
00244
|
||||
00246 <span class="comment">//OpenGL Specific Functions//</span>
|
||||
00248 <span class="comment"></span>
|
||||
00255 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a9">SetGL2D</a>();
|
||||
00256
|
||||
00258 <span class="comment">//Timer and Framerate Independent Movement//</span>
|
||||
00260 <span class="comment"></span>
|
||||
00267 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a10">Delay</a>(Uint32 milliseconds);
|
||||
00268
|
||||
00275 Uint32 <a class="code" href="classZE_1_1ZEngine.html#a11">GetTime</a>();
|
||||
00276
|
||||
00282 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a12">PauseTimer</a>();
|
||||
00283
|
||||
00289 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a13">UnpauseTimer</a>();
|
||||
00290
|
||||
00297 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a14">GetFrameTime</a>();
|
||||
00298
|
||||
00306 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a15">GetFramerate</a>();
|
||||
00307
|
||||
00317 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a16">SetDesiredFramerate</a>(Uint8 rate);
|
||||
00318
|
||||
00326 Uint8 <a class="code" href="classZE_1_1ZEngine.html#a17">GetDesiredFramerate</a>();
|
||||
00327
|
||||
00334 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a18">IsPaused</a>();
|
||||
00335
|
||||
00337 <span class="comment">//Event and Input Handling//</span>
|
||||
00339 <span class="comment"></span>
|
||||
00346 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a19">IsActive</a>();
|
||||
00347
|
||||
00354 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a20">RequestQuit</a>();
|
||||
00355
|
||||
00363 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a21">QuitRequested</a>();
|
||||
00364
|
||||
00369 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a22">SetReloadNeed</a>(<span class="keywordtype">bool</span> state);
|
||||
00370
|
||||
00378 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a23">ImagesNeedReload</a>();
|
||||
00379
|
||||
00388 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a24">SetKeyRepeatRate</a>(<span class="keywordtype">int</span> rate);
|
||||
00389
|
||||
00397 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a25">KeyIsPressed</a>(SDLKey key);
|
||||
00398
|
||||
00406 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a26">KeyPress</a>(SDLKey key);
|
||||
00407
|
||||
00413 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a27">HideCursor</a>();
|
||||
00414
|
||||
00420 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a28">ShowCursor</a>();
|
||||
00421
|
||||
00428 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a29">MouseX</a>();
|
||||
00429
|
||||
00436 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a30">MouseY</a>();
|
||||
00437
|
||||
00444 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a31">LButtonPressed</a>();
|
||||
00445
|
||||
00452 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a32">RButtonPressed</a>();
|
||||
00453
|
||||
00461 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a33">MouseInRect</a>(SDL_Rect *rect);
|
||||
00462
|
||||
00468 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a34">CheckEvents</a>();
|
||||
00469
|
||||
00482 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a35">SetEventFilter</a>(SDL_EventFilter filter);
|
||||
00483
|
||||
00484 <span class="preprocessor">#ifdef USE_PHYSFS</span>
|
||||
00485 <span class="preprocessor"></span>
|
||||
00486 <span class="comment">//Physfs Utilities//</span>
|
||||
00488 <span class="comment"></span>
|
||||
00494 <span class="keywordtype">void</span> InitPhysFS(std::string argv);
|
||||
00495
|
||||
00502 <span class="keywordtype">void</span> AddPhysFSDir(std::string dir);
|
||||
00503
|
||||
00504 <span class="preprocessor">#endif //USE_PHYSFS</span>
|
||||
00505 <span class="preprocessor"></span>
|
||||
00507 <span class="comment">//Error Logging//</span>
|
||||
00509 <span class="comment"></span> <span class="keyword">private</span>:
|
||||
00517 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#c1">LogError</a>(<a class="code" href="classZE_1_1ZError.html">ZError</a> error);
|
||||
00518
|
||||
00519 <span class="keyword">public</span>:
|
||||
00530 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a36">SetErrorLog</a>(<span class="keywordtype">bool</span> logAll, std::string logFile=<span class="stringliteral">""</span>);
|
||||
00531
|
||||
00542 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a37">ReportError</a>(ZErrorCode code, std::string desc=<span class="stringliteral">""</span>, std::string file=<span class="stringliteral">""</span>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> line=0);
|
||||
00543
|
||||
00551 <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZEngine.html#a38">GetLastError</a>();
|
||||
00552
|
||||
00560 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a39">WriteLog</a>(std::string str);
|
||||
00561
|
||||
00568 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a40">FlushErrors</a>();
|
||||
00569
|
||||
00571 <span class="comment">//Random Number Generation//</span>
|
||||
00573 <span class="comment"></span>
|
||||
00579 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZEngine.html#a41">SeedRandGen</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> seed);
|
||||
00580
|
||||
00588 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> max);
|
||||
00589
|
||||
00597 <span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">long</span> max);
|
||||
00598
|
||||
00607 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">int</span> min, <span class="keywordtype">int</span> max);
|
||||
00608
|
||||
00617 <span class="keywordtype">long</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">long</span> min, <span class="keywordtype">long</span> max);
|
||||
00618
|
||||
00627 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">float</span> min, <span class="keywordtype">float</span> max);
|
||||
00628
|
||||
00637 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a42">Rand</a>(<span class="keywordtype">double</span> min, <span class="keywordtype">double</span> max);
|
||||
00638
|
||||
00645 <span class="keywordtype">double</span> <a class="code" href="classZE_1_1ZEngine.html#a48">RandDouble</a>();
|
||||
00646
|
||||
00648 <span class="comment">//Data Loading + Unloading//</span>
|
||||
00650 <span class="comment"></span>
|
||||
00657 SDL_Surface* <a class="code" href="classZE_1_1ZEngine.html#a49">LoadImage</a>(std::string filename);
|
||||
00658
|
||||
00659 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00660 <span class="preprocessor"></span>
|
||||
00667 Mix_Chunk* <a class="code" href="classZE_1_1ZEngine.html#a50">LoadSound</a>(std::string filename);
|
||||
00668
|
||||
00676 Mix_Music* <a class="code" href="classZE_1_1ZEngine.html#a51">LoadMusic</a>(std::string filename);
|
||||
00677 <span class="preprocessor">#endif</span>
|
||||
00678 <span class="preprocessor"></span>
|
||||
00679 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00680 <span class="preprocessor"></span>
|
||||
00688 TTF_Font* <a class="code" href="classZE_1_1ZEngine.html#a52">LoadFont</a>(std::string filename, <span class="keywordtype">int</span> size);
|
||||
00689 <span class="preprocessor">#endif </span>
|
||||
00690 <span class="preprocessor"></span>
|
||||
00692 <span class="comment">//Accessors//</span>
|
||||
00694 <span class="comment"></span>
|
||||
00701 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a53">Width</a>();
|
||||
00702
|
||||
00709 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a54">Height</a>();
|
||||
00710
|
||||
00717 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZEngine.html#a55">BPP</a>();
|
||||
00718
|
||||
00725 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZEngine.html#a56">IsFullscreen</a>();
|
||||
00726 };
|
||||
00727
|
||||
00728 }
|
||||
00729
|
||||
00730 <span class="preprocessor">#endif //__ze_zengine_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,24 +3,22 @@
|
||||
<title>ZE_ZEngine.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZEngine.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a> <br>
|
||||
Description: Header file for ZEngine class, the core of the ZEngine. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>,v 1.24 2003/04/28 00:23:06 cozman Exp </dd></dl>
|
||||
ZEngine Game Engine core Engine definition. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>,v 1.41 2003/06/11 05:51:32 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
ZEngine Game Engine core Engine definition.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Defines_8h-source.html">ZE_Defines.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__Utility_8h-source.html">ZE_Utility.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__Includes_8h-source.html">ZE_Includes.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZError_8h-source.html">ZE_ZError.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZRandGen_8h-source.html">ZE_ZRandGen.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="VersionInfo_8h-source.html">VersionInfo.h</a>"</code><br>
|
||||
|
||||
<p>
|
||||
<a href="ZE__ZEngine_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -28,9 +26,9 @@ ZEngine Game Engine core Engine definition.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZError.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZError.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__ZError_8cpp.html">ZE_ZError.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Error Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZError_8cpp.html">ZE_ZError.cpp</a>,v 1.5 2003/03/01 20:43:41 cozman Exp </dd></dl>
|
||||
Implementation of ZError, the ZEngine internal error information storage class. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZError_8cpp.html">ZE_ZError.cpp</a>,v 1.10 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZError, the ZEngine internal error information storage class.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZError_8h-source.html">ZE_ZError.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Implementation of ZError, the ZEngine internal error information storage class.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZError.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZError.h</h1><a href="ZE__ZError_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,73 +16,67 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00025 <span class="preprocessor">#ifndef __ze_zerror_h__</span>
|
||||
00026 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zerror_h__</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00029 <span class="preprocessor">#include <string></span>
|
||||
00030 <span class="keyword">using</span> <span class="keyword">namespace </span>std;
|
||||
00031
|
||||
00032 <span class="keyword">namespace </span>ZE
|
||||
00033 {
|
||||
00034
|
||||
00036
|
||||
<a name="l00040"></a><a class="code" href="namespaceZE.html#a24">00040</a> <span class="keyword">enum</span> <a class="code" href="namespaceZE.html#a24">ZErrorCode</a>
|
||||
00041 {
|
||||
00042 <a class="code" href="namespaceZE.html#a24a0">ZERR_NONE</a>,
|
||||
00043 <a class="code" href="namespaceZE.html#a24a1">ZERR_SDL_INTERNAL</a>,
|
||||
00044 <a class="code" href="namespaceZE.html#a24a2">ZERR_SDL_INIT</a>,
|
||||
00045 <a class="code" href="namespaceZE.html#a24a3">ZERR_MIX_INIT</a>,
|
||||
00046 <a class="code" href="namespaceZE.html#a24a4">ZERR_TTF_INIT</a>,
|
||||
00047 <a class="code" href="namespaceZE.html#a24a5">ZERR_NET_INIT</a>,
|
||||
00048 <a class="code" href="namespaceZE.html#a24a6">ZERR_VIDMODE</a>,
|
||||
00049 <a class="code" href="namespaceZE.html#a24a7">ZERR_LOAD_IMAGE</a>,
|
||||
00050 <a class="code" href="namespaceZE.html#a24a8">ZERR_LOAD_SOUND</a>,
|
||||
00051 <a class="code" href="namespaceZE.html#a24a9">ZERR_LOAD_MUSIC</a>,
|
||||
00052 <a class="code" href="namespaceZE.html#a24a10">ZERR_LOAD_FONT</a>,
|
||||
00053 <a class="code" href="namespaceZE.html#a24a11">ZERR_NOIMAGE</a>,
|
||||
00054 <a class="code" href="namespaceZE.html#a24a12">ZERR_NOSOUND</a>,
|
||||
00055 <a class="code" href="namespaceZE.html#a24a13">ZERR_NOMUSIC</a>,
|
||||
00056 <a class="code" href="namespaceZE.html#a24a14">ZERR_NOFONT</a>,
|
||||
00057 <a class="code" href="namespaceZE.html#a24a15">ZERR_NOSOCKET</a>,
|
||||
00058 <a class="code" href="namespaceZE.html#a24a16">ZERR_NET_CLIENT</a>,
|
||||
00059 <a class="code" href="namespaceZE.html#a24a17">ZERR_NET_SERVER</a>,
|
||||
00060 <a class="code" href="namespaceZE.html#a24a18">ZERR_LAST</a>
|
||||
00061 };
|
||||
00062
|
||||
<a name="l00069"></a><a class="code" href="classZE_1_1ZError.html">00069</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZError.html">ZError</a>
|
||||
00070 {
|
||||
00071 <span class="keyword">protected</span>:
|
||||
00073 <span class="keyword">static</span> string *<a class="code" href="classZE_1_1ZError.html#q0">sErrorDesc</a>;
|
||||
<a name="l00075"></a><a class="code" href="classZE_1_1ZError.html#n0">00075</a> <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZError.html#n0">rCode</a>;
|
||||
<a name="l00077"></a><a class="code" href="classZE_1_1ZError.html#n1">00077</a> string <a class="code" href="classZE_1_1ZError.html#n1">rDescription</a>;
|
||||
<a name="l00079"></a><a class="code" href="classZE_1_1ZError.html#n2">00079</a> string <a class="code" href="classZE_1_1ZError.html#n2">rFilename</a>;
|
||||
<a name="l00081"></a><a class="code" href="classZE_1_1ZError.html#n3">00081</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZError.html#n3">rLine</a>;
|
||||
00082
|
||||
00083 <span class="keyword">public</span>:
|
||||
00089 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZError.html#d0">CreateStringTable</a>();
|
||||
00090
|
||||
00096 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZError.html#d1">DestroyStringTable</a>();
|
||||
00021 <span class="preprocessor">#ifndef __ze_zerror_h__</span>
|
||||
00022 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zerror_h__</span>
|
||||
00023 <span class="preprocessor"></span>
|
||||
00024 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00025 <span class="preprocessor">#include <string></span>
|
||||
00026
|
||||
00027 <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
<a name="l00036"></a><a class="code" href="namespaceZE.html#a24">00036</a> <span class="keyword">enum</span> <a class="code" href="namespaceZE.html#a24">ZErrorCode</a>
|
||||
00037 {
|
||||
00038 <a class="code" href="namespaceZE.html#a24a0">ZERR_NONE</a>,
|
||||
00039 <a class="code" href="namespaceZE.html#a24a1">ZERR_SDL_INTERNAL</a>,
|
||||
00040 <a class="code" href="namespaceZE.html#a24a2">ZERR_SDL_INIT</a>,
|
||||
00041 <a class="code" href="namespaceZE.html#a24a3">ZERR_MIX_INIT</a>,
|
||||
00042 <a class="code" href="namespaceZE.html#a24a4">ZERR_TTF_INIT</a>,
|
||||
00043 <a class="code" href="namespaceZE.html#a24a5">ZERR_NET_INIT</a>,
|
||||
00044 <a class="code" href="namespaceZE.html#a24a6">ZERR_VIDMODE</a>,
|
||||
00045 <a class="code" href="namespaceZE.html#a24a7">ZERR_LOAD_IMAGE</a>,
|
||||
00046 <a class="code" href="namespaceZE.html#a24a8">ZERR_LOAD_SOUND</a>,
|
||||
00047 <a class="code" href="namespaceZE.html#a24a9">ZERR_LOAD_MUSIC</a>,
|
||||
00048 <a class="code" href="namespaceZE.html#a24a10">ZERR_LOAD_FONT</a>,
|
||||
00049 <a class="code" href="namespaceZE.html#a24a11">ZERR_NOIMAGE</a>,
|
||||
00050 <a class="code" href="namespaceZE.html#a24a12">ZERR_NOSOUND</a>,
|
||||
00051 <a class="code" href="namespaceZE.html#a24a13">ZERR_NOMUSIC</a>,
|
||||
00052 <a class="code" href="namespaceZE.html#a24a14">ZERR_NOFONT</a>,
|
||||
00053 <a class="code" href="namespaceZE.html#a24a15">ZERR_NOSOCKET</a>,
|
||||
00054 <a class="code" href="namespaceZE.html#a24a16">ZERR_NET_CLIENT</a>,
|
||||
00055 <a class="code" href="namespaceZE.html#a24a17">ZERR_NET_SERVER</a>,
|
||||
00056 <a class="code" href="namespaceZE.html#a24a18">ZERR_LAST</a>
|
||||
00057 };
|
||||
00058
|
||||
<a name="l00065"></a><a class="code" href="classZE_1_1ZError.html">00065</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZError.html">ZError</a>
|
||||
00066 {
|
||||
00067 <span class="keyword">protected</span>:
|
||||
00069 <span class="keyword">static</span> std::string <a class="code" href="classZE_1_1ZError.html#q0">sErrorDesc</a>[<a class="code" href="namespaceZE.html#a24a18">ZERR_LAST</a>];
|
||||
<a name="l00071"></a><a class="code" href="classZE_1_1ZError.html#n0">00071</a> <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZError.html#n0">rCode</a>;
|
||||
<a name="l00073"></a><a class="code" href="classZE_1_1ZError.html#n1">00073</a> std::string <a class="code" href="classZE_1_1ZError.html#n1">rDescription</a>;
|
||||
<a name="l00075"></a><a class="code" href="classZE_1_1ZError.html#n2">00075</a> std::string <a class="code" href="classZE_1_1ZError.html#n2">rFilename</a>;
|
||||
<a name="l00077"></a><a class="code" href="classZE_1_1ZError.html#n3">00077</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZError.html#n3">rLine</a>;
|
||||
00078
|
||||
00079 <span class="keyword">public</span>:
|
||||
00085 <span class="keyword">static</span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZError.html#d0">CreateStringTable</a>();
|
||||
00086
|
||||
00096 <a class="code" href="classZE_1_1ZError.html#a0">ZError</a>(ZErrorCode code=ZERR_NONE, std::string desc=<span class="stringliteral">""</span>, std::string file=<span class="stringliteral">""</span>, <span class="keywordtype">int</span> line=0);
|
||||
00097
|
||||
00107 <a class="code" href="classZE_1_1ZError.html#a0">ZError</a>(ZErrorCode code=ZERR_NONE, string desc=<span class="stringliteral">""</span>, string file=<span class="stringliteral">""</span>, <span class="keywordtype">int</span> line=0);
|
||||
00107 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZError.html#a1">Create</a>(ZErrorCode code, std::string desc=<span class="stringliteral">""</span>, std::string file=<span class="stringliteral">""</span>, <span class="keywordtype">int</span> line=0);
|
||||
00108
|
||||
00114 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZError.html#a1">~ZError</a>();
|
||||
00115
|
||||
00125 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZError.html#a2">Create</a>(ZErrorCode code, string desc=<span class="stringliteral">""</span>, string file=<span class="stringliteral">""</span>, <span class="keywordtype">int</span> line=0);
|
||||
00126
|
||||
00128 <span class="comment">//Accessors//</span>
|
||||
00130 <span class="comment"></span>
|
||||
00137 <span class="comment"></span> <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZError.html#a3">Code</a>() <span class="keyword">const</span>;
|
||||
00138
|
||||
00144 string <a class="code" href="classZE_1_1ZError.html#a4">LogString</a>() <span class="keyword">const</span>;
|
||||
00145 };
|
||||
00146
|
||||
00147 }
|
||||
00148
|
||||
00149 <span class="preprocessor">#endif //__ze_zerror_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00110 <span class="comment">//Accessors//</span>
|
||||
00112 <span class="comment"></span>
|
||||
00119 <a class="code" href="namespaceZE.html#a24">ZErrorCode</a> <a class="code" href="classZE_1_1ZError.html#a2">Code</a>() <span class="keyword">const</span>;
|
||||
00120
|
||||
00126 std::string <a class="code" href="classZE_1_1ZError.html#a3">LogString</a>() <span class="keyword">const</span>;
|
||||
00127 };
|
||||
00128
|
||||
00129 }
|
||||
00130
|
||||
00131 <span class="preprocessor">#endif //__ze_zerror_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZError.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZError.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZError_8h.html">ZE_ZError.h</a> <br>
|
||||
Description: Header file for ZEngine Error Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZError_8h.html">ZE_ZError.h</a>,v 1.7 2003/03/01 20:42:52 cozman Exp </dd></dl>
|
||||
Definition file for ZError, the Error logging class for ZEngine. This class should never be used by the average user, it is used by ZEngine to store information on an error. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZError_8h.html">ZE_ZError.h</a>,v 1.12 2003/06/11 05:51:32 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZError, the Error logging class for ZEngine. This class should never be used by the average user, it is used by ZEngine to store information on an error.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Utility_8h-source.html">ZE_Utility.h</a>"</code><br>
|
||||
<code>#include <string></code><br>
|
||||
@ -26,9 +22,9 @@ Definition file for ZError, the Error logging class for ZEngine. This class shou
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,23 @@
|
||||
<title>ZE_ZFont.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZFont.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZFont_8cpp.html">ZE_ZFont.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Font Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZFont_8cpp.html">ZE_ZFont.cpp</a>,v 1.8 2003/04/08 03:34:25 cozman Exp </dd></dl>
|
||||
Implementation of ZFont, the basic Font class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZFont_8cpp.html">ZE_ZFont.cpp</a>,v 1.12 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZFont, the basic Font class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZFont_8h-source.html">ZE_ZFont.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZFont.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZFont.h</h1><a href="ZE__ZFont_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,81 +16,81 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zfont_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zfont_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028 <span class="preprocessor">#include "<a class="code" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>"</span>
|
||||
00029
|
||||
00030 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00031 <span class="preprocessor"></span>
|
||||
00032 <span class="keyword">namespace </span>ZE
|
||||
00033 {
|
||||
00034
|
||||
<a name="l00040"></a><a class="code" href="classZE_1_1ZFont.html">00040</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZFont.html">ZFont</a>
|
||||
00041 {
|
||||
00042 <span class="keyword">protected</span>:
|
||||
<a name="l00044"></a><a class="code" href="classZE_1_1ZFont.html#n0">00044</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZFont.html#n0">rEngine</a>;
|
||||
<a name="l00046"></a><a class="code" href="classZE_1_1ZFont.html#n1">00046</a> TTF_Font *<a class="code" href="classZE_1_1ZFont.html#n1">rFont</a>;
|
||||
<a name="l00048"></a><a class="code" href="classZE_1_1ZFont.html#n2">00048</a> string <a class="code" href="classZE_1_1ZFont.html#n2">rFilename</a>;
|
||||
<a name="l00050"></a><a class="code" href="classZE_1_1ZFont.html#n3">00050</a> SDL_Color <a class="code" href="classZE_1_1ZFont.html#n3">rColor</a>;
|
||||
<a name="l00052"></a><a class="code" href="classZE_1_1ZFont.html#n4">00052</a> SDL_Color <a class="code" href="classZE_1_1ZFont.html#n4">rBGColor</a>;
|
||||
00053
|
||||
00054 <span class="keyword">public</span>:
|
||||
00055
|
||||
00057 <span class="comment">//Opening and Closing//</span>
|
||||
00059 <span class="comment"></span>
|
||||
00065 <span class="comment"></span> <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>();
|
||||
00066
|
||||
00074 <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>(string filename, <span class="keywordtype">int</span> size);
|
||||
00075
|
||||
00081 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZFont.html#a2">~ZFont</a>();
|
||||
00082
|
||||
00090 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a3">Open</a>(string filename, <span class="keywordtype">int</span> size);
|
||||
00091
|
||||
00097 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a4">Release</a>();
|
||||
00098
|
||||
00100 <span class="comment">//Settings and Drawing//</span>
|
||||
00102 <span class="comment"></span>
|
||||
00110 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a5">DrawText</a>(string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &image) <span class="keyword">const</span>;
|
||||
00111
|
||||
00119 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a6">DrawShadedText</a>(string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &image) <span class="keyword">const</span>;
|
||||
00120
|
||||
00129 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a7">SetColor</a>(Uint8 r, Uint8 g, Uint8 b);
|
||||
00130
|
||||
00139 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a8">SetBGColor</a>(Uint8 r, Uint8 g, Uint8 b);
|
||||
00140
|
||||
00149 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a9">SetStyle</a>(<span class="keywordtype">bool</span> bold, <span class="keywordtype">bool</span> italic, <span class="keywordtype">bool</span> underline);
|
||||
00150
|
||||
00157 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a10">Resize</a>(<span class="keywordtype">int</span> size);
|
||||
00158
|
||||
00160 <span class="comment">//Accessors//</span>
|
||||
00162 <span class="comment"></span>
|
||||
00169 <span class="comment"></span> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a11">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00170
|
||||
00177 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a12">IsBold</a>() <span class="keyword">const</span>;
|
||||
00178
|
||||
00185 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a13">IsItalic</a>() <span class="keyword">const</span>;
|
||||
00186
|
||||
00193 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a14">IsUnderlined</a>() <span class="keyword">const</span>;
|
||||
00194
|
||||
00201 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a15">Height</a>() <span class="keyword">const</span>;
|
||||
00202
|
||||
00209 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a16">LineSkip</a>() <span class="keyword">const</span>;
|
||||
00210
|
||||
00218 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a17">StringWidth</a>(string text) <span class="keyword">const</span>;
|
||||
00219
|
||||
00227 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a18">StringHeight</a>(string text) <span class="keyword">const</span>;
|
||||
00228 };
|
||||
00229
|
||||
00230 }
|
||||
00231
|
||||
00232 <span class="preprocessor">#endif //USE_SDL_TTF</span>
|
||||
00233 <span class="preprocessor"></span>
|
||||
00234 <span class="preprocessor">#endif //__ze_zfont_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00020 <span class="preprocessor">#ifndef __ze_zfont_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zfont_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024 <span class="preprocessor">#include "<a class="code" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>"</span>
|
||||
00025
|
||||
00026 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00027 <span class="preprocessor"></span>
|
||||
00028 <span class="keyword">namespace </span>ZE
|
||||
00029 {
|
||||
00030
|
||||
<a name="l00036"></a><a class="code" href="classZE_1_1ZFont.html">00036</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZFont.html">ZFont</a>
|
||||
00037 {
|
||||
00038 <span class="keyword">protected</span>:
|
||||
<a name="l00040"></a><a class="code" href="classZE_1_1ZFont.html#n0">00040</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZFont.html#n0">rEngine</a>;
|
||||
<a name="l00042"></a><a class="code" href="classZE_1_1ZFont.html#n1">00042</a> TTF_Font *<a class="code" href="classZE_1_1ZFont.html#n1">rFont</a>;
|
||||
<a name="l00044"></a><a class="code" href="classZE_1_1ZFont.html#n2">00044</a> std::string <a class="code" href="classZE_1_1ZFont.html#n2">rFilename</a>;
|
||||
<a name="l00046"></a><a class="code" href="classZE_1_1ZFont.html#n3">00046</a> SDL_Color <a class="code" href="classZE_1_1ZFont.html#n3">rColor</a>;
|
||||
<a name="l00048"></a><a class="code" href="classZE_1_1ZFont.html#n4">00048</a> SDL_Color <a class="code" href="classZE_1_1ZFont.html#n4">rBGColor</a>;
|
||||
00049
|
||||
00050 <span class="keyword">public</span>:
|
||||
00051
|
||||
00053 <span class="comment">//Opening and Closing//</span>
|
||||
00055 <span class="comment"></span>
|
||||
00061 <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>();
|
||||
00062
|
||||
00070 <a class="code" href="classZE_1_1ZFont.html#a0">ZFont</a>(std::string filename, <span class="keywordtype">int</span> size);
|
||||
00071
|
||||
00077 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZFont.html#a2">~ZFont</a>();
|
||||
00078
|
||||
00086 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a3">Open</a>(std::string filename, <span class="keywordtype">int</span> size);
|
||||
00087
|
||||
00093 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a4">Release</a>();
|
||||
00094
|
||||
00096 <span class="comment">//Settings and Drawing//</span>
|
||||
00098 <span class="comment"></span>
|
||||
00106 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a5">DrawText</a>(std::string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &image) <span class="keyword">const</span>;
|
||||
00107
|
||||
00115 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a6">DrawShadedText</a>(std::string text, <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &image) <span class="keyword">const</span>;
|
||||
00116
|
||||
00126 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a7">SetColor</a>(Uint8 r, Uint8 g, Uint8 b, Uint8 a=255);
|
||||
00127
|
||||
00136 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a8">SetBGColor</a>(Uint8 r, Uint8 g, Uint8 b);
|
||||
00137
|
||||
00146 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a9">SetStyle</a>(<span class="keywordtype">bool</span> bold, <span class="keywordtype">bool</span> italic, <span class="keywordtype">bool</span> underline);
|
||||
00147
|
||||
00154 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZFont.html#a10">Resize</a>(<span class="keywordtype">int</span> size);
|
||||
00155
|
||||
00157 <span class="comment">//Accessors//</span>
|
||||
00159 <span class="comment"></span>
|
||||
00166 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a11">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00167
|
||||
00174 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a12">IsBold</a>() <span class="keyword">const</span>;
|
||||
00175
|
||||
00182 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a13">IsItalic</a>() <span class="keyword">const</span>;
|
||||
00183
|
||||
00190 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZFont.html#a14">IsUnderlined</a>() <span class="keyword">const</span>;
|
||||
00191
|
||||
00198 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a15">Height</a>() <span class="keyword">const</span>;
|
||||
00199
|
||||
00206 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a16">LineSkip</a>() <span class="keyword">const</span>;
|
||||
00207
|
||||
00215 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a17">StringWidth</a>(std::string text) <span class="keyword">const</span>;
|
||||
00216
|
||||
00224 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZFont.html#a18">StringHeight</a>(std::string text) <span class="keyword">const</span>;
|
||||
00225 };
|
||||
00226
|
||||
00227 }
|
||||
00228
|
||||
00229 <span class="preprocessor">#endif //USE_SDL_TTF</span>
|
||||
00230 <span class="preprocessor"></span>
|
||||
00231 <span class="preprocessor">#endif //__ze_zfont_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,14 @@
|
||||
<title>ZE_ZFont.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZFont.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZFont_8h.html">ZE_ZFont.h</a> <br>
|
||||
Description: Header file for core ZEngine Font Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZFont_8h.html">ZE_ZFont.h</a>,v 1.6 2003/02/10 04:40:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
Definition file for ZFont, the basic Font class for ZEngine. <br>
|
||||
$ Id $<br>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZFont, the basic Font class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZImage_8h-source.html">ZE_ZImage.h</a>"</code><br>
|
||||
@ -26,9 +21,9 @@ Definition file for ZFont, the basic Font class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZImage.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZImage.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZImage_8cpp.html">ZE_ZImage.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Image or Texture Object. <br>
|
||||
Author(s): James Turk, Gamer Tazar <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZImage_8cpp.html">ZE_ZImage.cpp</a>,v 1.30 2003/04/18 21:52:49 cozman Exp </dd></dl>
|
||||
Implementation of ZImage, the Image class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZImage_8cpp.html">ZE_ZImage.cpp</a>,v 1.35 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZImage, the Image class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZImage_8h-source.html">ZE_ZImage.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Implementation of ZImage, the Image class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZImage.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZImage.h</h1><a href="ZE__ZImage_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,99 +16,99 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zimage_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zimage_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="keyword">namespace </span>ZE
|
||||
00030 {
|
||||
00031
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZImage.html">00037</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZImage.html">ZImage</a>
|
||||
00038 {
|
||||
00039 <span class="keyword">protected</span>:
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZImage.html#n0">00041</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZImage.html#n0">rEngine</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZImage.html#n1">00043</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n1">rTexMinX</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZImage.html#n2">00045</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n2">rTexMinY</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZImage.html#n3">00047</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n3">rTexMaxX</a>;
|
||||
<a name="l00049"></a><a class="code" href="classZE_1_1ZImage.html#n4">00049</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n4">rTexMaxY</a>;
|
||||
<a name="l00051"></a><a class="code" href="classZE_1_1ZImage.html#n5">00051</a> SDL_Surface *<a class="code" href="classZE_1_1ZImage.html#n5">rImage</a>;
|
||||
<a name="l00053"></a><a class="code" href="classZE_1_1ZImage.html#n6">00053</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n6">rTexID</a>;
|
||||
<a name="l00055"></a><a class="code" href="classZE_1_1ZImage.html#n7">00055</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n7">rWidth</a>;
|
||||
<a name="l00057"></a><a class="code" href="classZE_1_1ZImage.html#n8">00057</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n8">rHeight</a>;
|
||||
<a name="l00059"></a><a class="code" href="classZE_1_1ZImage.html#n9">00059</a> Uint8 <a class="code" href="classZE_1_1ZImage.html#n9">rAlpha</a>;
|
||||
00060
|
||||
00061 <span class="keyword">public</span>:
|
||||
00062
|
||||
00068 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>();
|
||||
00069
|
||||
00076 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &rhs);
|
||||
00077
|
||||
00084 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(string filename);
|
||||
00085
|
||||
00092 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(SDL_Surface *surface);
|
||||
00093
|
||||
00105 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00106
|
||||
00118 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00119
|
||||
00125 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZImage.html#a6">~ZImage</a>();
|
||||
00126
|
||||
00128 <span class="comment">//Opening and Closing//</span>
|
||||
00130 <span class="comment"></span>
|
||||
00137 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a7">Open</a>(string filename);
|
||||
00138
|
||||
00150 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a8">OpenFromImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00151
|
||||
00163 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a8">OpenFromImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00164
|
||||
00171 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a10">Attach</a>(SDL_Surface *surface);
|
||||
00172
|
||||
00178 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a11">Reload</a>();
|
||||
00179
|
||||
00185 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a12">Release</a>();
|
||||
00186
|
||||
00188 <span class="comment">//Graphics//</span>
|
||||
00190 <span class="comment"></span>
|
||||
00198 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a13">SetAlpha</a>(Uint8 alpha);
|
||||
00199
|
||||
00208 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a14">SetColorKey</a>(Uint8 red, Uint8 green, Uint8 blue);
|
||||
00209
|
||||
00217 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a15">Flip</a>(<span class="keywordtype">bool</span> horizontal, <span class="keywordtype">bool</span> vertical);
|
||||
00218
|
||||
00226 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a16">Stretch</a>(<span class="keywordtype">float</span> xFactor, <span class="keywordtype">float</span> yFactor);
|
||||
00227
|
||||
00235 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a17">Resize</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> width, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> height);
|
||||
00236
|
||||
00243 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a18">Bind</a>() <span class="keyword">const</span>;
|
||||
00244
|
||||
00252 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a19">Draw</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y) <span class="keyword">const</span>;
|
||||
00253
|
||||
00262 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a19">Draw</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y) <span class="keyword">const</span>;
|
||||
00263
|
||||
00272 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keywordtype">float</span> angle) <span class="keyword">const</span>;
|
||||
00020 <span class="preprocessor">#ifndef __ze_zimage_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zimage_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="keyword">namespace </span>ZE
|
||||
00026 {
|
||||
00027
|
||||
<a name="l00033"></a><a class="code" href="classZE_1_1ZImage.html">00033</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZImage.html">ZImage</a>
|
||||
00034 {
|
||||
00035 <span class="keyword">protected</span>:
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZImage.html#n0">00037</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZImage.html#n0">rEngine</a>;
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZImage.html#n1">00039</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n1">rTexMinX</a>;
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZImage.html#n2">00041</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n2">rTexMinY</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZImage.html#n3">00043</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n3">rTexMaxX</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZImage.html#n4">00045</a> GLfloat <a class="code" href="classZE_1_1ZImage.html#n4">rTexMaxY</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZImage.html#n5">00047</a> SDL_Surface *<a class="code" href="classZE_1_1ZImage.html#n5">rImage</a>;
|
||||
<a name="l00049"></a><a class="code" href="classZE_1_1ZImage.html#n6">00049</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n6">rTexID</a>;
|
||||
<a name="l00051"></a><a class="code" href="classZE_1_1ZImage.html#n7">00051</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n7">rWidth</a>;
|
||||
<a name="l00053"></a><a class="code" href="classZE_1_1ZImage.html#n8">00053</a> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#n8">rHeight</a>;
|
||||
<a name="l00055"></a><a class="code" href="classZE_1_1ZImage.html#n9">00055</a> Uint8 <a class="code" href="classZE_1_1ZImage.html#n9">rAlpha</a>;
|
||||
00056
|
||||
00057 <span class="keyword">public</span>:
|
||||
00058
|
||||
00064 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>();
|
||||
00065
|
||||
00072 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &rhs);
|
||||
00073
|
||||
00080 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(std::string filename);
|
||||
00081
|
||||
00088 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(SDL_Surface *surface);
|
||||
00089
|
||||
00101 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00102
|
||||
00114 <a class="code" href="classZE_1_1ZImage.html#a0">ZImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00115
|
||||
00121 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZImage.html#a6">~ZImage</a>();
|
||||
00122
|
||||
00124 <span class="comment">//Opening and Closing//</span>
|
||||
00126 <span class="comment"></span>
|
||||
00133 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a7">Open</a>(std::string filename);
|
||||
00134
|
||||
00146 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a8">OpenFromImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00147
|
||||
00159 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a8">OpenFromImage</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZImage.html">ZImage</a> &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h);
|
||||
00160
|
||||
00167 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a10">Attach</a>(SDL_Surface *surface);
|
||||
00168
|
||||
00174 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a11">Reload</a>();
|
||||
00175
|
||||
00181 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a12">Release</a>();
|
||||
00182
|
||||
00184 <span class="comment">//Graphics//</span>
|
||||
00186 <span class="comment"></span>
|
||||
00194 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a13">SetAlpha</a>(Uint8 alpha);
|
||||
00195
|
||||
00204 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a14">SetColorKey</a>(Uint8 red, Uint8 green, Uint8 blue);
|
||||
00205
|
||||
00213 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a15">Flip</a>(<span class="keywordtype">bool</span> horizontal, <span class="keywordtype">bool</span> vertical);
|
||||
00214
|
||||
00222 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a16">Stretch</a>(<span class="keywordtype">float</span> xFactor, <span class="keywordtype">float</span> yFactor);
|
||||
00223
|
||||
00231 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a17">Resize</a>(<span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> width, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> height);
|
||||
00232
|
||||
00239 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a18">Bind</a>() <span class="keyword">const</span>;
|
||||
00240
|
||||
00250 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a19">Draw</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, Uint8 zIndex=0) <span class="keyword">const</span>;
|
||||
00251
|
||||
00261 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a19">Draw</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y, Uint8 zIndex=0) <span class="keyword">const</span>;
|
||||
00262
|
||||
00272 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(<span class="keywordtype">int</span> x, <span class="keywordtype">int</span> y, <span class="keywordtype">float</span> angle, Uint8 zIndex=0) <span class="keyword">const</span>;
|
||||
00273
|
||||
00283 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y, <span class="keywordtype">float</span> angle) <span class="keyword">const</span>;
|
||||
00284
|
||||
00286 <span class="comment">//Accessors//</span>
|
||||
00288 <span class="comment"></span>
|
||||
00295 <span class="comment"></span> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZImage.html#a23">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00296
|
||||
00302 SDL_Surface *<a class="code" href="classZE_1_1ZImage.html#a24">Surface</a>() <span class="keyword">const</span>;
|
||||
00303
|
||||
00310 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#a25">Width</a>() <span class="keyword">const</span>;
|
||||
00311
|
||||
00318 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#a26">Height</a>() <span class="keyword">const</span>;
|
||||
00319
|
||||
00327 Uint8 <a class="code" href="classZE_1_1ZImage.html#a27">Alpha</a>() <span class="keyword">const</span>;
|
||||
00328 };
|
||||
00329
|
||||
00330 }
|
||||
00331
|
||||
00332 <span class="preprocessor">#endif</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00284 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y, <span class="keywordtype">float</span> angle, Uint8 zIndex=0) <span class="keyword">const</span>;
|
||||
00285
|
||||
00287 <span class="comment">//Accessors//</span>
|
||||
00289 <span class="comment"></span>
|
||||
00296 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZImage.html#a23">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00297
|
||||
00303 SDL_Surface *<a class="code" href="classZE_1_1ZImage.html#a24">Surface</a>() <span class="keyword">const</span>;
|
||||
00304
|
||||
00311 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#a25">Width</a>() <span class="keyword">const</span>;
|
||||
00312
|
||||
00319 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZImage.html#a26">Height</a>() <span class="keyword">const</span>;
|
||||
00320
|
||||
00328 Uint8 <a class="code" href="classZE_1_1ZImage.html#a27">Alpha</a>() <span class="keyword">const</span>;
|
||||
00329 };
|
||||
00330
|
||||
00331 }
|
||||
00332
|
||||
00333 <span class="preprocessor">#endif</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZImage.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZImage.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__ZImage_8h.html">ZE_ZImage.h</a> <br>
|
||||
Description: Header file for core ZEngine Image and Texture Object. <br>
|
||||
Author(s): James Turk, Gamer Tazar <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>,v 1.16 2003/02/10 05:26:18 cozman Exp </dd></dl>
|
||||
Definition file for ZImage, the OpenGL version of the ZImage class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>,v 1.19 2003/06/11 00:15:26 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZImage, the OpenGL version of the ZImage class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZImage, the OpenGL version of the ZImage class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,23 @@
|
||||
<title>ZE_ZMusic.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZMusic.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__ZMusic_8cpp.html">ZE_ZMusic.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Music Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZMusic_8cpp.html">ZE_ZMusic.cpp</a>,v 1.6 2003/02/10 04:02:38 cozman Exp </dd></dl>
|
||||
Implementation of ZMusic, the basic Music class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZMusic_8cpp.html">ZE_ZMusic.cpp</a>,v 1.10 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZMusic, the basic Music class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZMusic_8h-source.html">ZE_ZMusic.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZMusic.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZMusic.h</h1><a href="ZE__ZMusic_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,71 +16,71 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zmusic_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zmusic_h__</span>
|
||||
00020 <span class="preprocessor">#ifndef __ze_zmusic_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zmusic_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00030 <span class="preprocessor"></span>
|
||||
00031 <span class="keyword">namespace </span>ZE
|
||||
00032 {
|
||||
00033
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZMusic.html">00039</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZMusic.html">ZMusic</a>
|
||||
00040 {
|
||||
00041 <span class="keyword">protected</span>:
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZMusic.html#n0">00043</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZMusic.html#n0">rEngine</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZMusic.html#n1">00045</a> Mix_Music *<a class="code" href="classZE_1_1ZMusic.html#n1">rMusic</a>;
|
||||
00027 <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
<a name="l00035"></a><a class="code" href="classZE_1_1ZMusic.html">00035</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZMusic.html">ZMusic</a>
|
||||
00036 {
|
||||
00037 <span class="keyword">protected</span>:
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZMusic.html#n0">00039</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZMusic.html#n0">rEngine</a>;
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZMusic.html#n1">00041</a> Mix_Music *<a class="code" href="classZE_1_1ZMusic.html#n1">rMusic</a>;
|
||||
00042
|
||||
00043 <span class="keyword">public</span>:
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZMusic.html#p0">00045</a> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZMusic.html#p0">LoopInfinite</a>;
|
||||
00046
|
||||
00047 <span class="keyword">public</span>:
|
||||
<a name="l00049"></a><a class="code" href="classZE_1_1ZMusic.html#p0">00049</a> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZMusic.html#p0">LoopInfinite</a>;
|
||||
00050
|
||||
00052 <span class="comment">//Opening and Closing//</span>
|
||||
00054 <span class="comment"></span>
|
||||
00060 <span class="comment"></span> <a class="code" href="classZE_1_1ZMusic.html#a0">ZMusic</a>();
|
||||
00061
|
||||
00068 <a class="code" href="classZE_1_1ZMusic.html#a0">ZMusic</a>(string filename);
|
||||
00069
|
||||
00075 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZMusic.html#a2">~ZMusic</a>();
|
||||
00076
|
||||
00083 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a3">Open</a>(string filename);
|
||||
00084
|
||||
00090 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a4">Release</a>();
|
||||
00091
|
||||
00093 <span class="comment">//Play Controls//</span>
|
||||
00095 <span class="comment"></span>
|
||||
00104 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a5">Play</a>(<span class="keywordtype">int</span> loopNum=0, <span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00105
|
||||
00111 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a6">Pause</a>() <span class="keyword">const</span>;
|
||||
00112
|
||||
00118 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a7">Unpause</a>() <span class="keyword">const</span>;
|
||||
00119
|
||||
00125 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a8">Rewind</a>() <span class="keyword">const</span>;
|
||||
00126
|
||||
00133 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a9">Stop</a>(<span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00134
|
||||
00141 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a10">SetVolume</a>(<span class="keywordtype">int</span> volume);
|
||||
00142
|
||||
00144 <span class="comment">//Accessors//</span>
|
||||
00146 <span class="comment"></span>
|
||||
00153 <span class="comment"></span> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a11">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00154
|
||||
00161 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a12">IsPlaying</a>() <span class="keyword">const</span>;
|
||||
00162
|
||||
00169 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a13">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00170
|
||||
00177 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZMusic.html#a14">Volume</a>() <span class="keyword">const</span>;
|
||||
00178 };
|
||||
00179
|
||||
00180
|
||||
00181 }
|
||||
00182
|
||||
00183 <span class="preprocessor">#endif //USE_SDL_MIXER</span>
|
||||
00184 <span class="preprocessor"></span>
|
||||
00185 <span class="preprocessor">#endif //__ze_zmusic_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00048 <span class="comment">//Opening and Closing//</span>
|
||||
00050 <span class="comment"></span>
|
||||
00056 <a class="code" href="classZE_1_1ZMusic.html#a0">ZMusic</a>();
|
||||
00057
|
||||
00064 <a class="code" href="classZE_1_1ZMusic.html#a0">ZMusic</a>(std::string filename);
|
||||
00065
|
||||
00071 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZMusic.html#a2">~ZMusic</a>();
|
||||
00072
|
||||
00079 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a3">Open</a>(std::string filename);
|
||||
00080
|
||||
00086 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a4">Release</a>();
|
||||
00087
|
||||
00089 <span class="comment">//Play Controls//</span>
|
||||
00091 <span class="comment"></span>
|
||||
00100 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a5">Play</a>(<span class="keywordtype">int</span> loopNum=0, <span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00101
|
||||
00107 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a6">Pause</a>() <span class="keyword">const</span>;
|
||||
00108
|
||||
00114 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a7">Unpause</a>() <span class="keyword">const</span>;
|
||||
00115
|
||||
00121 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a8">Rewind</a>() <span class="keyword">const</span>;
|
||||
00122
|
||||
00129 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a9">Stop</a>(<span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00130
|
||||
00137 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZMusic.html#a10">SetVolume</a>(<span class="keywordtype">int</span> volume);
|
||||
00138
|
||||
00140 <span class="comment">//Accessors//</span>
|
||||
00142 <span class="comment"></span>
|
||||
00149 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a11">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00150
|
||||
00157 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a12">IsPlaying</a>() <span class="keyword">const</span>;
|
||||
00158
|
||||
00165 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZMusic.html#a13">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00166
|
||||
00173 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZMusic.html#a14">Volume</a>() <span class="keyword">const</span>;
|
||||
00174 };
|
||||
00175
|
||||
00176
|
||||
00177 }
|
||||
00178
|
||||
00179 <span class="preprocessor">#endif //USE_SDL_MIXER</span>
|
||||
00180 <span class="preprocessor"></span>
|
||||
00181 <span class="preprocessor">#endif //__ze_zmusic_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZMusic.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZMusic.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a> <br>
|
||||
Description: Header file for core ZEngine Music Wrapper Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a>,v 1.6 2003/02/10 04:40:16 cozman Exp </dd></dl>
|
||||
Definition file for ZMusic, the Music file wrapper for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a>,v 1.9 2003/06/11 00:15:26 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZMusic, the Music file wrapper for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZMusic, the Music file wrapper for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZRect.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZRect.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZRect_8cpp.html">ZE_ZRect.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Rectangle Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZRect_8cpp.html">ZE_ZRect.cpp</a>,v 1.9 2003/02/10 05:40:28 cozman Exp </dd></dl>
|
||||
Implementation of ZRect, the Rectangle class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZRect_8cpp.html">ZE_ZRect.cpp</a>,v 1.12 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZRect, the Rectangle class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZRect_8h-source.html">ZE_ZRect.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Implementation of ZRect, the Rectangle class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZRect.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZRect.h</h1><a href="ZE__ZRect_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,81 +16,81 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zrect_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zrect_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="keyword">namespace </span>ZE
|
||||
00030 {
|
||||
00031
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZRect.html">00037</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZRect.html">ZRect</a>
|
||||
00038 {
|
||||
00039 <span class="keyword">protected</span>:
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZRect.html#n0">00041</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n0">rX</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZRect.html#n1">00043</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n1">rY</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZRect.html#n2">00045</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n2">rWidth</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZRect.html#n3">00047</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n3">rHeight</a>;
|
||||
00048
|
||||
00049 <span class="keyword">public</span>:
|
||||
00050
|
||||
00056 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>();
|
||||
00057
|
||||
00067 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y, <span class="keywordtype">float</span> width, <span class="keywordtype">float</span> height);
|
||||
00068
|
||||
00075 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keyword">const</span> SDL_Rect &rect);
|
||||
00076
|
||||
00083 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs);
|
||||
00084
|
||||
00092 <span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a>& <a class="code" href="classZE_1_1ZRect.html#a4">operator=</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs);
|
||||
00093
|
||||
00099 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZRect.html#a5">~ZRect</a>();
|
||||
00100
|
||||
00109 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a6">operator<</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs) <span class="keyword">const</span>;
|
||||
00110
|
||||
00120 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a7">Draw</a>(Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha=255) <span class="keyword">const</span>;
|
||||
00121
|
||||
00129 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a8">Move</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y);
|
||||
00130
|
||||
00138 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a9">MoveRel</a>(<span class="keywordtype">float</span> xMove, <span class="keywordtype">float</span> yMove);
|
||||
00139
|
||||
00147 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a10">Resize</a>(<span class="keywordtype">float</span> width, <span class="keywordtype">float</span> height);
|
||||
00148
|
||||
00156 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a11">ResizeRel</a>(<span class="keywordtype">float</span> widthChange, <span class="keywordtype">float</span> heightChange);
|
||||
00157
|
||||
00165 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a12">Intersects</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00166
|
||||
00175 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a13">Contains</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y) <span class="keyword">const</span>;
|
||||
00176
|
||||
00184 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a13">Contains</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00185
|
||||
00193 <a class="code" href="classZE_1_1ZRect.html">ZRect</a> <a class="code" href="classZE_1_1ZRect.html#a15">Intersection</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00194
|
||||
00201 SDL_Rect <a class="code" href="classZE_1_1ZRect.html#a16">SDLrect</a>() <span class="keyword">const</span>;
|
||||
00202
|
||||
00209 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a17">X</a>() <span class="keyword">const</span>;
|
||||
00210
|
||||
00217 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a18">Y</a>() <span class="keyword">const</span>;
|
||||
00218
|
||||
00225 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a19">Left</a>() <span class="keyword">const</span>;
|
||||
00226
|
||||
00233 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a20">Right</a>() <span class="keyword">const</span>;
|
||||
00234
|
||||
00241 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a21">Top</a>() <span class="keyword">const</span>;
|
||||
00242
|
||||
00249 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a22">Bottom</a>() <span class="keyword">const</span>;
|
||||
00250
|
||||
00257 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a23">Width</a>() <span class="keyword">const</span>;
|
||||
00258
|
||||
00265 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a24">Height</a>() <span class="keyword">const</span>;
|
||||
00266 };
|
||||
00267
|
||||
00268 } <span class="comment">//namespace ZE</span>
|
||||
00269
|
||||
00270 <span class="preprocessor">#endif //__ze_zrect_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00020 <span class="preprocessor">#ifndef __ze_zrect_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zrect_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="keyword">namespace </span>ZE
|
||||
00026 {
|
||||
00027
|
||||
<a name="l00033"></a><a class="code" href="classZE_1_1ZRect.html">00033</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZRect.html">ZRect</a>
|
||||
00034 {
|
||||
00035 <span class="keyword">protected</span>:
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZRect.html#n0">00037</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n0">rX</a>;
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZRect.html#n1">00039</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n1">rY</a>;
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZRect.html#n2">00041</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n2">rWidth</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZRect.html#n3">00043</a> <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#n3">rHeight</a>;
|
||||
00044
|
||||
00045 <span class="keyword">public</span>:
|
||||
00046
|
||||
00052 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>();
|
||||
00053
|
||||
00063 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y, <span class="keywordtype">float</span> width, <span class="keywordtype">float</span> height);
|
||||
00064
|
||||
00071 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keyword">const</span> SDL_Rect &rect);
|
||||
00072
|
||||
00079 <a class="code" href="classZE_1_1ZRect.html#a0">ZRect</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs);
|
||||
00080
|
||||
00088 <span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a>& <a class="code" href="classZE_1_1ZRect.html#a4">operator=</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs);
|
||||
00089
|
||||
00095 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZRect.html#a5">~ZRect</a>();
|
||||
00096
|
||||
00105 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a6">operator<</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rhs) <span class="keyword">const</span>;
|
||||
00106
|
||||
00116 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a7">Draw</a>(Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha=255) <span class="keyword">const</span>;
|
||||
00117
|
||||
00125 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a8">Move</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y);
|
||||
00126
|
||||
00134 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a9">MoveRel</a>(<span class="keywordtype">float</span> xMove, <span class="keywordtype">float</span> yMove);
|
||||
00135
|
||||
00143 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a10">Resize</a>(<span class="keywordtype">float</span> width, <span class="keywordtype">float</span> height);
|
||||
00144
|
||||
00152 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZRect.html#a11">ResizeRel</a>(<span class="keywordtype">float</span> widthChange, <span class="keywordtype">float</span> heightChange);
|
||||
00153
|
||||
00161 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a12">Intersects</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00162
|
||||
00171 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a13">Contains</a>(<span class="keywordtype">float</span> x, <span class="keywordtype">float</span> y) <span class="keyword">const</span>;
|
||||
00172
|
||||
00180 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZRect.html#a13">Contains</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00181
|
||||
00189 <a class="code" href="classZE_1_1ZRect.html">ZRect</a> <a class="code" href="classZE_1_1ZRect.html#a15">Intersection</a>(<span class="keyword">const</span> <a class="code" href="classZE_1_1ZRect.html">ZRect</a> &rect) <span class="keyword">const</span>;
|
||||
00190
|
||||
00197 SDL_Rect <a class="code" href="classZE_1_1ZRect.html#a16">SDLrect</a>() <span class="keyword">const</span>;
|
||||
00198
|
||||
00205 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a17">X</a>() <span class="keyword">const</span>;
|
||||
00206
|
||||
00213 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a18">Y</a>() <span class="keyword">const</span>;
|
||||
00214
|
||||
00221 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a19">Left</a>() <span class="keyword">const</span>;
|
||||
00222
|
||||
00229 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a20">Right</a>() <span class="keyword">const</span>;
|
||||
00230
|
||||
00237 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a21">Top</a>() <span class="keyword">const</span>;
|
||||
00238
|
||||
00245 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a22">Bottom</a>() <span class="keyword">const</span>;
|
||||
00246
|
||||
00253 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a23">Width</a>() <span class="keyword">const</span>;
|
||||
00254
|
||||
00261 <span class="keywordtype">float</span> <a class="code" href="classZE_1_1ZRect.html#a24">Height</a>() <span class="keyword">const</span>;
|
||||
00262 };
|
||||
00263
|
||||
00264 } <span class="comment">//namespace ZE</span>
|
||||
00265
|
||||
00266 <span class="preprocessor">#endif //__ze_zrect_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZRect.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZRect.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZRect_8h.html">ZE_ZRect.h</a> <br>
|
||||
Description: Header file for core ZEngine Rectangle Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZRect_8h.html">ZE_ZRect.h</a>,v 1.9 2003/02/16 21:54:29 cozman Exp </dd></dl>
|
||||
Definition file for ZRect, the Rectangle class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZRect_8h.html">ZE_ZRect.h</a>,v 1.11 2003/05/13 01:30:51 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZRect, the Rectangle class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZRect, the Rectangle class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,23 @@
|
||||
<title>ZE_ZServer.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZServer.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZServer_8cpp.html">ZE_ZServer.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine TCP Server Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZServer_8cpp.html">ZE_ZServer.cpp</a>,v 1.4 2003/04/08 03:30:50 cozman Exp </dd></dl>
|
||||
Implementation file for ZServer, the TCP Server class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZServer_8cpp.html">ZE_ZServer.cpp</a>,v 1.7 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation file for ZServer, the TCP Server class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZServer_8h-source.html">ZE_ZServer.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZServer.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZServer.h</h1><a href="ZE__ZServer_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,55 +16,55 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zserver_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zserver_h__</span>
|
||||
00020 <span class="preprocessor">#ifndef __ze_zserver_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zserver_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00030 <span class="preprocessor"></span>
|
||||
00031 <span class="keyword">namespace </span>ZE
|
||||
00032 {
|
||||
00033
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZServer.html">00041</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZServer.html">ZServer</a>
|
||||
00042 {
|
||||
00043 <span class="keyword">private</span>:
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZServer.html#o0">00045</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a> *<a class="code" href="classZE_1_1ZServer.html#o0">rEngine</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZServer.html#o1">00047</a> TCPsocket <a class="code" href="classZE_1_1ZServer.html#o1">rSocket</a>;
|
||||
<a name="l00049"></a><a class="code" href="classZE_1_1ZServer.html#o2">00049</a> SDLNet_SocketSet <a class="code" href="classZE_1_1ZServer.html#o2">rSocketSet</a>;
|
||||
<a name="l00051"></a><a class="code" href="classZE_1_1ZServer.html#o3">00051</a> TCPsocket *<a class="code" href="classZE_1_1ZServer.html#o3">rClientSockets</a>;
|
||||
<a name="l00053"></a><a class="code" href="classZE_1_1ZServer.html#o4">00053</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZServer.html#o4">rMaxClients</a>;
|
||||
<a name="l00055"></a><a class="code" href="classZE_1_1ZServer.html#o5">00055</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZServer.html#o5">rVerbose</a>;
|
||||
<a name="l00057"></a><a class="code" href="classZE_1_1ZServer.html#o6">00057</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZServer.html#o6">rWaitTime</a>;
|
||||
00058
|
||||
00065 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZServer.html#c0">CloseSocket</a>(<span class="keywordtype">int</span> num);
|
||||
00066
|
||||
00067 <span class="keyword">public</span>:
|
||||
00074 <a class="code" href="classZE_1_1ZServer.html#a0">ZServer</a>(<span class="keywordtype">bool</span> verbose=<span class="keyword">false</span>);
|
||||
00075
|
||||
00081 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZServer.html#a1">~ZServer</a>();
|
||||
00082
|
||||
00091 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZServer.html#a2">Start</a>(<span class="keywordtype">int</span> maxClients, Uint16 port);
|
||||
00092
|
||||
00098 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZServer.html#a3">Stop</a>();
|
||||
00099
|
||||
00107 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZServer.html#a4">SetWaitTime</a>(<span class="keywordtype">int</span> wait);
|
||||
00108
|
||||
00115 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZServer.html#a5">CheckSockets</a>();
|
||||
00116
|
||||
00123 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZServer.html#a6">Clients</a>();
|
||||
00124
|
||||
00131 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZServer.html#a7">WaitTime</a>();
|
||||
00132 };
|
||||
00133
|
||||
00134 } <span class="comment">//namespace ZE</span>
|
||||
00135
|
||||
00136 <span class="preprocessor">#endif //USE_SDL_NET</span>
|
||||
00137 <span class="preprocessor"></span>
|
||||
00138 <span class="preprocessor">#endif //__ze_zserver_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00027 <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
00037 <span class="keyword">class </span>ZServer
|
||||
00038 {
|
||||
00039 <span class="keyword">private</span>:
|
||||
00041 ZEngine *rEngine;
|
||||
00043 TCPsocket rSocket;
|
||||
00045 SDLNet_SocketSet rSocketSet;
|
||||
00047 TCPsocket *rClientSockets;
|
||||
00049 <span class="keywordtype">int</span> rMaxClients;
|
||||
00051 <span class="keywordtype">bool</span> rVerbose;
|
||||
00053 <span class="keywordtype">int</span> rWaitTime;
|
||||
00054
|
||||
00061 <span class="keywordtype">void</span> CloseSocket(<span class="keywordtype">int</span> num);
|
||||
00062
|
||||
00063 <span class="keyword">public</span>:
|
||||
00070 ZServer(<span class="keywordtype">bool</span> verbose=<span class="keyword">false</span>);
|
||||
00071
|
||||
00077 <span class="keyword">virtual</span> ~ZServer();
|
||||
00078
|
||||
00087 <span class="keywordtype">bool</span> Start(<span class="keywordtype">int</span> maxClients, Uint16 port);
|
||||
00088
|
||||
00094 <span class="keywordtype">void</span> Stop();
|
||||
00095
|
||||
00103 <span class="keywordtype">void</span> SetWaitTime(<span class="keywordtype">int</span> wait);
|
||||
00104
|
||||
00111 <span class="keywordtype">void</span> CheckSockets();
|
||||
00112
|
||||
00119 <span class="keywordtype">int</span> Clients();
|
||||
00120
|
||||
00127 <span class="keywordtype">int</span> WaitTime();
|
||||
00128 };
|
||||
00129
|
||||
00130 } <span class="comment">//namespace ZE</span>
|
||||
00131
|
||||
00132 <span class="preprocessor">#endif //USE_SDL_NET</span>
|
||||
00133 <span class="preprocessor"></span>
|
||||
00134 <span class="preprocessor">#endif //__ze_zserver_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,31 +3,25 @@
|
||||
<title>ZE_ZServer.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZServer.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZServer_8h.html">ZE_ZServer.h</a> <br>
|
||||
Description: Header file for core ZEngine TCP Server Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZServer_8h.html">ZE_ZServer.h</a>,v 1.5 2003/04/27 22:05:25 cozman Exp </dd></dl>
|
||||
Definition file for ZServer, the TCP Server class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZServer_8h.html">ZE_ZServer.h</a>,v 1.7 2003/05/13 01:30:51 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZServer, the TCP Server class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
<p>
|
||||
<a href="ZE__ZServer_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,23 @@
|
||||
<title>ZE_ZSound.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZSound.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZE__ZSound_8cpp.html">ZE_ZSound.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Sound Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZSound_8cpp.html">ZE_ZSound.cpp</a>,v 1.6 2003/02/10 04:02:39 cozman Exp </dd></dl>
|
||||
Implementation of ZSound, the basic Sound class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZSound_8cpp.html">ZE_ZSound.cpp</a>,v 1.10 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZSound, the basic Sound class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZSound_8h-source.html">ZE_ZSound.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZSound.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZSound.h</h1><a href="ZE__ZSound_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,70 +16,70 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_zsound_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zsound_h__</span>
|
||||
00020 <span class="preprocessor">#ifndef __ze_zsound_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_zsound_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00030 <span class="preprocessor"></span>
|
||||
00031 <span class="keyword">namespace </span>ZE
|
||||
00032 {
|
||||
00033
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZSound.html">00039</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZSound.html">ZSound</a>
|
||||
00040 {
|
||||
00041 <span class="keyword">protected</span>:
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZSound.html#n0">00043</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZSound.html#n0">rEngine</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZSound.html#n1">00045</a> Mix_Chunk* <a class="code" href="classZE_1_1ZSound.html#n1">rSound</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZSound.html#n2">00047</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#n2">rChannelID</a>;
|
||||
00027 <span class="keyword">namespace </span>ZE
|
||||
00028 {
|
||||
00029
|
||||
<a name="l00035"></a><a class="code" href="classZE_1_1ZSound.html">00035</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZSound.html">ZSound</a>
|
||||
00036 {
|
||||
00037 <span class="keyword">protected</span>:
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZSound.html#n0">00039</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZSound.html#n0">rEngine</a>;
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZSound.html#n1">00041</a> Mix_Chunk* <a class="code" href="classZE_1_1ZSound.html#n1">rSound</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZSound.html#n2">00043</a> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#n2">rChannelID</a>;
|
||||
00044
|
||||
00045 <span class="keyword">public</span>:
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZSound.html#p0">00047</a> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#p0">LoopInfinite</a>;
|
||||
00048
|
||||
00049 <span class="keyword">public</span>:
|
||||
<a name="l00051"></a><a class="code" href="classZE_1_1ZSound.html#p0">00051</a> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#p0">LoopInfinite</a>;
|
||||
00052
|
||||
00054 <span class="comment">//Opening and Closing//</span>
|
||||
00056 <span class="comment"></span>
|
||||
00062 <span class="comment"></span> <a class="code" href="classZE_1_1ZSound.html#a0">ZSound</a>();
|
||||
00063
|
||||
00070 <a class="code" href="classZE_1_1ZSound.html#a0">ZSound</a>(string filename);
|
||||
00071
|
||||
00077 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZSound.html#a2">~ZSound</a>();
|
||||
00078
|
||||
00085 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a3">Open</a>(string filename);
|
||||
00086
|
||||
00092 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a4">Release</a>();
|
||||
00093
|
||||
00095 <span class="comment">//Play Controls//</span>
|
||||
00097 <span class="comment"></span>
|
||||
00106 <span class="comment"></span> <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a5">Play</a>(<span class="keywordtype">int</span> loopNum=0, <span class="keywordtype">int</span> fadeTime=0);
|
||||
00107
|
||||
00113 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a6">Pause</a>() <span class="keyword">const</span>;
|
||||
00114
|
||||
00120 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a7">Unpause</a>() <span class="keyword">const</span>;
|
||||
00121
|
||||
00128 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a8">Stop</a>(<span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00129
|
||||
00136 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a9">SetVolume</a>(<span class="keywordtype">int</span> volume);
|
||||
00137
|
||||
00139 <span class="comment">//Accessors//</span>
|
||||
00141 <span class="comment"></span>
|
||||
00148 <span class="comment"></span> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a10">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00149
|
||||
00156 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a11">IsPlaying</a>() <span class="keyword">const</span>;
|
||||
00157
|
||||
00164 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a12">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00165
|
||||
00172 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#a13">Volume</a>() <span class="keyword">const</span>;
|
||||
00173 };
|
||||
00174
|
||||
00175
|
||||
00176 }
|
||||
00177
|
||||
00178 <span class="preprocessor">#endif //USE_SDL_MIXER</span>
|
||||
00179 <span class="preprocessor"></span>
|
||||
00180 <span class="preprocessor">#endif //__ze_zsound_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00050 <span class="comment">//Opening and Closing//</span>
|
||||
00052 <span class="comment"></span>
|
||||
00058 <a class="code" href="classZE_1_1ZSound.html#a0">ZSound</a>();
|
||||
00059
|
||||
00066 <a class="code" href="classZE_1_1ZSound.html#a0">ZSound</a>(std::string filename);
|
||||
00067
|
||||
00073 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZSound.html#a2">~ZSound</a>();
|
||||
00074
|
||||
00081 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a3">Open</a>(std::string filename);
|
||||
00082
|
||||
00088 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a4">Release</a>();
|
||||
00089
|
||||
00091 <span class="comment">//Play Controls//</span>
|
||||
00093 <span class="comment"></span>
|
||||
00102 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a5">Play</a>(<span class="keywordtype">int</span> loopNum=0, <span class="keywordtype">int</span> fadeTime=0);
|
||||
00103
|
||||
00109 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a6">Pause</a>() <span class="keyword">const</span>;
|
||||
00110
|
||||
00116 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a7">Unpause</a>() <span class="keyword">const</span>;
|
||||
00117
|
||||
00124 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a8">Stop</a>(<span class="keywordtype">int</span> fadeTime=0) <span class="keyword">const</span>;
|
||||
00125
|
||||
00132 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZSound.html#a9">SetVolume</a>(<span class="keywordtype">int</span> volume);
|
||||
00133
|
||||
00135 <span class="comment">//Accessors//</span>
|
||||
00137 <span class="comment"></span>
|
||||
00144 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a10">IsLoaded</a>() <span class="keyword">const</span>;
|
||||
00145
|
||||
00152 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a11">IsPlaying</a>() <span class="keyword">const</span>;
|
||||
00153
|
||||
00160 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZSound.html#a12">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00161
|
||||
00168 <span class="keywordtype">int</span> <a class="code" href="classZE_1_1ZSound.html#a13">Volume</a>() <span class="keyword">const</span>;
|
||||
00169 };
|
||||
00170
|
||||
00171
|
||||
00172 }
|
||||
00173
|
||||
00174 <span class="preprocessor">#endif //USE_SDL_MIXER</span>
|
||||
00175 <span class="preprocessor"></span>
|
||||
00176 <span class="preprocessor">#endif //__ze_zsound_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZSound.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZSound.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZSound_8h.html">ZE_ZSound.h</a> <br>
|
||||
Description: Header file for core ZEngine Sound Wrapper Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZSound_8h.html">ZE_ZSound.h</a>,v 1.6 2003/02/10 04:40:16 cozman Exp </dd></dl>
|
||||
Definition file for ZSound, the Sound Effect wrapper for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZSound_8h.html">ZE_ZSound.h</a>,v 1.9 2003/06/11 00:15:26 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZSound, the Sound Effect wrapper for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZSound, the Sound Effect wrapper for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZTimer.cpp File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/src/ZE_ZTimer.cpp File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZTimer_8cpp.html">ZE_ZTimer.cpp</a> <br>
|
||||
Description: Implementation source file for core ZEngine Timer Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZTimer_8cpp.html">ZE_ZTimer.cpp</a>,v 1.6 2003/02/10 04:40:30 cozman Exp </dd></dl>
|
||||
Implementation of ZTimer, the basic Timer class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZTimer_8cpp.html">ZE_ZTimer.cpp</a>,v 1.9 2003/06/11 05:51:16 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Implementation of ZTimer, the basic Timer class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZTimer_8h-source.html">ZE_ZTimer.h</a>"</code><br>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
@ -23,9 +19,9 @@ Implementation of ZTimer, the basic Timer class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/ZE_ZTimer.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZTimer.h</h1><a href="ZE__ZTimer_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001 <span class="comment">/*******************************************************************************</span>
|
||||
@ -16,48 +16,48 @@
|
||||
00008 <span class="comment"> and the home of this Library is http://www.zengine.sourceforge.net</span>
|
||||
00009 <span class="comment">*******************************************************************************/</span>
|
||||
00010
|
||||
00024 <span class="preprocessor">#ifndef __ze_ztimer_h__</span>
|
||||
00025 <span class="preprocessor"></span><span class="preprocessor">#define __ze_ztimer_h__</span>
|
||||
00026 <span class="preprocessor"></span>
|
||||
00027 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00028
|
||||
00029 <span class="keyword">namespace </span>ZE
|
||||
00030 {
|
||||
00031
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZTimer.html">00037</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZTimer.html">ZTimer</a>
|
||||
00038 {
|
||||
00039 <span class="keyword">protected</span>:
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZTimer.html#n0">00041</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZTimer.html#n0">rEngine</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZTimer.html#n1">00043</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#n1">rPaused</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZTimer.html#n2">00045</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#n2">rUseZEngine</a>;
|
||||
<a name="l00047"></a><a class="code" href="classZE_1_1ZTimer.html#n3">00047</a> Uint32 <a class="code" href="classZE_1_1ZTimer.html#n3">rPausedTime</a>;
|
||||
<a name="l00049"></a><a class="code" href="classZE_1_1ZTimer.html#n4">00049</a> Uint32 <a class="code" href="classZE_1_1ZTimer.html#n4">rLastPause</a>;
|
||||
00050
|
||||
00057 Uint32 <a class="code" href="classZE_1_1ZTimer.html#b0">GetParentTime</a>() <span class="keyword">const</span>;
|
||||
00058
|
||||
00059 <span class="keyword">public</span>:
|
||||
00060
|
||||
00067 <a class="code" href="classZE_1_1ZTimer.html#a0">ZTimer</a>(<span class="keywordtype">bool</span> useZEngine=<span class="keyword">true</span>);
|
||||
00068
|
||||
00074 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZTimer.html#a1">~ZTimer</a>();
|
||||
00075
|
||||
00081 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a2">Reset</a>();
|
||||
00082
|
||||
00088 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a3">Pause</a>();
|
||||
00089
|
||||
00095 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a4">Unpause</a>();
|
||||
00096
|
||||
00103 Uint32 <a class="code" href="classZE_1_1ZTimer.html#a5">GetTime</a>() <span class="keyword">const</span>;
|
||||
00104
|
||||
00111 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#a6">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00112 };
|
||||
00113
|
||||
00114 }
|
||||
00115
|
||||
00116 <span class="preprocessor">#endif //__ze_ztimer_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00020 <span class="preprocessor">#ifndef __ze_ztimer_h__</span>
|
||||
00021 <span class="preprocessor"></span><span class="preprocessor">#define __ze_ztimer_h__</span>
|
||||
00022 <span class="preprocessor"></span>
|
||||
00023 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00024
|
||||
00025 <span class="keyword">namespace </span>ZE
|
||||
00026 {
|
||||
00027
|
||||
<a name="l00033"></a><a class="code" href="classZE_1_1ZTimer.html">00033</a> <span class="keyword">class </span><a class="code" href="classZE_1_1ZTimer.html">ZTimer</a>
|
||||
00034 {
|
||||
00035 <span class="keyword">protected</span>:
|
||||
<a name="l00037"></a><a class="code" href="classZE_1_1ZTimer.html#n0">00037</a> <a class="code" href="classZE_1_1ZEngine.html">ZEngine</a>* <a class="code" href="classZE_1_1ZTimer.html#n0">rEngine</a>;
|
||||
<a name="l00039"></a><a class="code" href="classZE_1_1ZTimer.html#n1">00039</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#n1">rPaused</a>;
|
||||
<a name="l00041"></a><a class="code" href="classZE_1_1ZTimer.html#n2">00041</a> <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#n2">rUseZEngine</a>;
|
||||
<a name="l00043"></a><a class="code" href="classZE_1_1ZTimer.html#n3">00043</a> Uint32 <a class="code" href="classZE_1_1ZTimer.html#n3">rPausedTime</a>;
|
||||
<a name="l00045"></a><a class="code" href="classZE_1_1ZTimer.html#n4">00045</a> Uint32 <a class="code" href="classZE_1_1ZTimer.html#n4">rLastPause</a>;
|
||||
00046
|
||||
00053 Uint32 <a class="code" href="classZE_1_1ZTimer.html#b0">GetParentTime</a>() <span class="keyword">const</span>;
|
||||
00054
|
||||
00055 <span class="keyword">public</span>:
|
||||
00056
|
||||
00063 <a class="code" href="classZE_1_1ZTimer.html#a0">ZTimer</a>(<span class="keywordtype">bool</span> useZEngine=<span class="keyword">true</span>);
|
||||
00064
|
||||
00070 <span class="keyword">virtual</span> <a class="code" href="classZE_1_1ZTimer.html#a1">~ZTimer</a>();
|
||||
00071
|
||||
00077 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a2">Reset</a>();
|
||||
00078
|
||||
00084 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a3">Pause</a>();
|
||||
00085
|
||||
00091 <span class="keywordtype">void</span> <a class="code" href="classZE_1_1ZTimer.html#a4">Unpause</a>();
|
||||
00092
|
||||
00099 Uint32 <a class="code" href="classZE_1_1ZTimer.html#a5">GetTime</a>() <span class="keyword">const</span>;
|
||||
00100
|
||||
00107 <span class="keywordtype">bool</span> <a class="code" href="classZE_1_1ZTimer.html#a6">IsPaused</a>() <span class="keyword">const</span>;
|
||||
00108 };
|
||||
00109
|
||||
00110 }
|
||||
00111
|
||||
00112 <span class="preprocessor">#endif //__ze_ztimer_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZE_ZTimer.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZE_ZTimer.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header: </b></dt><dd>File: <a class="el" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a> <br>
|
||||
Description: Header file for core ZEngine Timer Object. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a>,v 1.6 2003/02/10 04:40:16 cozman Exp </dd></dl>
|
||||
Definition file for ZTimer, the Timer class for ZEngine. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a>,v 1.8 2003/05/13 01:30:51 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Definition file for ZTimer, the Timer class for ZEngine.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
|
||||
@ -25,9 +21,9 @@ Definition file for ZTimer, the Timer class for ZEngine.
|
||||
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>namespace </td><td valign=bottom><a class="el" href="namespaceZE.html">ZE</a></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,36 +3,36 @@
|
||||
<title>/include/ZEngine.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZEngine.h</h1><a href="ZEngine_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre>00001
|
||||
00054 <span class="preprocessor">#ifndef __zengine_h__</span>
|
||||
00055 <span class="preprocessor"></span><span class="preprocessor">#define __zengine_h__</span>
|
||||
00056 <span class="preprocessor"></span>
|
||||
00057 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00058 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00059 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00060 <span class="preprocessor">#include "<a class="code" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>"</span>
|
||||
00061 <span class="preprocessor">#include "<a class="code" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a>"</span>
|
||||
00062 <span class="preprocessor">#include "<a class="code" href="ZE__ZConfigFile_8h.html">ZE_ZConfigFile.h</a>"</span>
|
||||
00063 <span class="preprocessor">#include "<a class="code" href="ZE__ZRect_8h.html">ZE_ZRect.h</a>"</span>
|
||||
00064 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00065 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZFont_8h.html">ZE_ZFont.h</a>"</span>
|
||||
00050 <span class="preprocessor">#ifndef __zengine_h__</span>
|
||||
00051 <span class="preprocessor"></span><span class="preprocessor">#define __zengine_h__</span>
|
||||
00052 <span class="preprocessor"></span>
|
||||
00053 <span class="preprocessor">#include "<a class="code" href="ZE__Defines_8h.html">ZE_Defines.h</a>"</span>
|
||||
00054 <span class="preprocessor">#include "<a class="code" href="ZE__ZEngine_8h.html">ZE_ZEngine.h</a>"</span>
|
||||
00055 <span class="preprocessor">#include "<a class="code" href="ZE__Utility_8h.html">ZE_Utility.h</a>"</span>
|
||||
00056 <span class="preprocessor">#include "<a class="code" href="ZE__ZImage_8h.html">ZE_ZImage.h</a>"</span>
|
||||
00057 <span class="preprocessor">#include "<a class="code" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a>"</span>
|
||||
00058 <span class="preprocessor">#include "<a class="code" href="ZE__ZConfigFile_8h.html">ZE_ZConfigFile.h</a>"</span>
|
||||
00059 <span class="preprocessor">#include "<a class="code" href="ZE__ZRect_8h.html">ZE_ZRect.h</a>"</span>
|
||||
00060 <span class="preprocessor">#ifdef USE_SDL_TTF</span>
|
||||
00061 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZFont_8h.html">ZE_ZFont.h</a>"</span>
|
||||
00062 <span class="preprocessor">#endif</span>
|
||||
00063 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00064 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZSound_8h.html">ZE_ZSound.h</a>"</span>
|
||||
00065 <span class="preprocessor">#include "<a class="code" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a>"</span>
|
||||
00066 <span class="preprocessor">#endif</span>
|
||||
00067 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_MIXER</span>
|
||||
00068 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZSound_8h.html">ZE_ZSound.h</a>"</span>
|
||||
00069 <span class="preprocessor">#include "<a class="code" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a>"</span>
|
||||
00067 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00068 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZClient_8h.html">ZE_ZClient.h</a>"</span>
|
||||
00069 <span class="preprocessor">#include "<a class="code" href="ZE__ZServer_8h.html">ZE_ZServer.h</a>"</span>
|
||||
00070 <span class="preprocessor">#endif</span>
|
||||
00071 <span class="preprocessor"></span><span class="preprocessor">#ifdef USE_SDL_NET</span>
|
||||
00072 <span class="preprocessor"></span><span class="preprocessor">#include "<a class="code" href="ZE__ZClient_8h.html">ZE_ZClient.h</a>"</span>
|
||||
00073 <span class="preprocessor">#include "<a class="code" href="ZE__ZServer_8h.html">ZE_ZServer.h</a>"</span>
|
||||
00074 <span class="preprocessor">#endif</span>
|
||||
00075 <span class="preprocessor"></span>
|
||||
00076 <span class="preprocessor">#endif //__zengine_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
00071 <span class="preprocessor"></span>
|
||||
00072 <span class="preprocessor">#endif //__zengine_h__</span>
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,15 @@
|
||||
<title>ZEngine.h File Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/ZEngine.h File Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<dl compact><dt><b>File Header:</b></dt><dd>File: <a class="el" href="ZEngine_8h.html">ZEngine.h</a> <br>
|
||||
Description: Public Header File for ZEngine. <br>
|
||||
Author(s): James Turk <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZEngine_8h.html">ZEngine.h</a>,v 1.24 2003/04/27 18:55:00 cozman Exp </dd></dl>
|
||||
Header file for ZEngine Game Engine from Concept of Zero, this is the file that programs that wish to utilize ZEngine should include. <br>
|
||||
<dl compact><dt><b>Id</b></dt><dd><a class="el" href="ZEngine_8h.html">ZEngine.h</a>,v 1.26 2003/05/13 01:30:51 cozman Exp </dd></dl>
|
||||
<br>
|
||||
</dd></dl>
|
||||
<dl compact><dt><b>Author:</b></dt><dd>James Turk</dd></dl>
|
||||
|
||||
<p>
|
||||
Header file for ZEngine Game Engine from Concept of Zero, this is the file that programs that wish to utilize ZEngine should include.
|
||||
<p>
|
||||
<code>#include "<a class="el" href="ZE__Defines_8h-source.html">ZE_Defines.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZEngine_8h-source.html">ZE_ZEngine.h</a>"</code><br>
|
||||
@ -27,16 +23,14 @@ Header file for ZEngine Game Engine from Concept of Zero, this is the file that
|
||||
<code>#include "<a class="el" href="ZE__ZFont_8h-source.html">ZE_ZFont.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZSound_8h-source.html">ZE_ZSound.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZMusic_8h-source.html">ZE_ZMusic.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZClient_8h-source.html">ZE_ZClient.h</a>"</code><br>
|
||||
<code>#include "<a class="el" href="ZE__ZServer_8h-source.html">ZE_ZServer.h</a>"</code><br>
|
||||
|
||||
<p>
|
||||
<a href="ZEngine_8h-source.html">Go to the source code of this file.</a><table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,11 +3,11 @@
|
||||
<title>Annotated Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine Compound List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZClient.html">ZE::ZClient</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for a simplified TCP client</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classVersionInfo.html">VersionInfo</a></td><td class="indexvalue">Class for holding version information</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Class for use in <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a></td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZE::ZConfigFile::ZCF_Section</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Section class</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZE::ZConfigFile::ZCF_Variable</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Variable class</td></tr>
|
||||
@ -16,14 +16,14 @@
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZFont.html">ZFont</a> class for basic Font use</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZImage.html">ZImage</a> class for basic Image use</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZMusic.html">ZMusic</a> class for playing full length music (eg. ogg or wav)</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZRandGen.html">ZE::ZRandGen</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZRandGen.html">ZRandGen</a> class for OO encapsulation of superb random generator "Mersenne Twister."</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZRect.html">ZE::ZRect</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for simplified rectangle use</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZServer.html">ZE::ZServer</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for simplified TCP server</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZSound.html">ZSound</a> class for playing sound effects. (WAV)</td></tr>
|
||||
<tr><td class="indexkey"><a class="el" href="classZE_1_1ZTimer.html">ZE::ZTimer</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZTimer.html">ZTimer</a> class for Timer use</td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,34 +3,34 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b0">CleanString</a>(string str) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b0">CleanString</a>(std::string str) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a13">Close</a>()</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(string sec) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b2">Exists</a>(string sec, string var) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b1">Exists</a>(std::string sec) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b2">Exists</a>(std::string sec, std::string var) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a12">Flush</a>()</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a6">GetBool</a>(string section, string var, bool defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a>(string section, string var, float defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a5">GetInt</a>(string section, string var, int defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a7">GetString</a>(string section, string var, string defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a>(string sec, string var, string defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a3">Process</a>(string filename)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a6">GetBool</a>(std::string section, std::string var, bool defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a>(std::string section, std::string var, float defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a5">GetInt</a>(std::string section, std::string var, int defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a7">GetString</a>(std::string section, std::string var, std::string defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a>(std::string sec, std::string var, std::string defVal) const</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a3">Process</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#n0">rFileLayout</a></td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#n1">rFilename</a></td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a10">SetBool</a>(string section, string var, bool val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a>(string section, string var, float val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a9">SetInt</a>(string section, string var, int val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a11">SetString</a>(string section, string var, string val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a>(string sec, string var, string val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a10">SetBool</a>(std::string section, std::string var, bool val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a>(std::string section, std::string var, float val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a9">SetInt</a>(std::string section, std::string var, int val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a11">SetString</a>(std::string section, std::string var, std::string val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a>(std::string sec, std::string var, std::string val)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a>()</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a1">ZConfigFile</a>(string filename)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a1">ZConfigFile</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile.html#a2">~ZConfigFile</a>()</td><td><a class="el" href="classZE_1_1ZConfigFile.html">ZE::ZConfigFile</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZConfigFile class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile Class Reference</h1><code>#include <<a class="el" href="ZE__ZConfigFile_8h-source.html">ZE_ZConfigFile.h</a>></code>
|
||||
@ -13,53 +13,53 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a0">ZConfigFile</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default constructor.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a1">ZConfigFile</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor which takes filename.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default constructor.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a1">ZConfigFile</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor which takes filename.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a2">~ZConfigFile</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destructor, flushes file.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a3">Process</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Parse a file.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a> (string section, string var, float defVal) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get value in floating point format from file.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a5">GetInt</a> (string section, string var, int defVal) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get value in integer format from file.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a6">GetBool</a> (string section, string var, bool defVal) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get value in boolean format from file.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a7">GetString</a> (string section, string var, string defVal) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get value in string format from file.</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a> (string section, string var, float val)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set value in floating point format in file.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a9">SetInt</a> (string section, string var, int val)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set value in integer format in file.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a10">SetBool</a> (string section, string var, bool val)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set value in boolean format in file.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a11">SetString</a> (string section, string var, string val)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set value in string format in file.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Destructor, flushes file.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a3">Process</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Parse a file.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a4">GetFloat</a> (std::string section, std::string var, float defVal) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get value in floating point format from file.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a5">GetInt</a> (std::string section, std::string var, int defVal) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get value in integer format from file.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a6">GetBool</a> (std::string section, std::string var, bool defVal) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get value in boolean format from file.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a7">GetString</a> (std::string section, std::string var, std::string defVal) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get value in std::string format from file.</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a8">SetFloat</a> (std::string section, std::string var, float val)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set value in floating point format in file.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a9">SetInt</a> (std::string section, std::string var, int val)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set value in integer format in file.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a10">SetBool</a> (std::string section, std::string var, bool val)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set value in boolean format in file.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a11">SetString</a> (std::string section, std::string var, std::string val)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set value in std::string format in file.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a12">Flush</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Write all values to file.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Write all values to file.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#a13">Close</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Close the file.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Methods</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b0">CleanString</a> (string str) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Reformat a string in a form more suitable to parsing.</em> <a href="#b0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b1">Exists</a> (string sec) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if a section exists.</em> <a href="#b1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b2">Exists</a> (string sec, string var) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if a variable exists.</em> <a href="#b2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a> (string sec, string var, string val)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Internal function to set variables.</em> <a href="#b3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a> (string sec, string var, string defVal) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Internal function to get value of a variable.</em> <a href="#b4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Close the file.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b0">CleanString</a> (std::string str) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Reformat a std::string in a form more suitable to parsing.</em> <a href="#b0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b1">Exists</a> (std::string sec) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if a section exists.</em> <a href="#b1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b2">Exists</a> (std::string sec, std::string var) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if a variable exists.</em> <a href="#b2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b3">SetVariable</a> (std::string sec, std::string var, std::string val)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Internal function to set variables.</em> <a href="#b3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#b4">GetVariable</a> (std::string sec, std::string var, std::string defVal) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Internal function to get value of a variable.</em> <a href="#b4"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZConfigFile::rFileLayout"></a>
|
||||
list< <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZCF_Section</a> > </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#n0">rFileLayout</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>List of sections of internal type.</em></font><br><br></td></tr>
|
||||
std::list< <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZCF_Section</a> > </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#n0">rFileLayout</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">List of sections of internal type.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZConfigFile::rFilename"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#n1">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Filename of file currently open.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html#n1">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Filename of file currently open.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZConfigFile::ZConfigFile"></a><p>
|
||||
@ -70,8 +70,8 @@ string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.ht
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZConfigFile::ZConfigFile </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -98,9 +98,9 @@ A no-op default constructor. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZConfigFile::ZConfigFile </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -132,8 +132,8 @@ Constructor takes filename, and calls process on it. <dl compact><dt><b>Paramete
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZConfigFile::~ZConfigFile </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -159,11 +159,11 @@ Flushes the file, ensures a flush if the file is left open. </td>
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> string ZE::ZConfigFile::CleanString </td>
|
||||
<td class="md" nowrap valign="top"> std::string ZE::ZConfigFile::CleanString </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>str</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>str</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const<code> [protected]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -179,12 +179,12 @@ Flushes the file, ensures a flush if the file is left open. </td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Removes whitespace from a string and makes all characters lowercase. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
Removes whitespace from a std::string and makes all characters lowercase. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>str</em> </td><td>The string to get a clean version of. </td></tr>
|
||||
<tr><td valign=top><em>str</em> </td><td>The std::string to get a clean version of. </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>Cleaned string. </dd></dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>Cleaned std::string. </dd></dl>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -196,9 +196,9 @@ Removes whitespace from a string and makes all characters lowercase. <dl compact
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZConfigFile::Exists </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>sec</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>sec</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const<code> [protected]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -231,14 +231,14 @@ Find out if a section currently exists. <dl compact><dt><b>Parameters:</b></dt><
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZConfigFile::Exists </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -276,20 +276,20 @@ Find out if a variable currently exists. <dl compact><dt><b>Parameters:</b></dt>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::SetVariable </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -325,22 +325,22 @@ Set variable to value, called internally only. <dl compact><dt><b>Parameters:</b
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> string ZE::ZConfigFile::GetVariable </td>
|
||||
<td class="md" nowrap valign="top"> std::string ZE::ZConfigFile::GetVariable </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>sec</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -379,9 +379,9 @@ Get value of variable, called internally only. <dl compact><dt><b>Parameters:</b
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::Process </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -413,20 +413,20 @@ Parses the file, reading the contents into the fileLayout map. <dl compact><dt><
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZConfigFile::GetFloat </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -466,20 +466,20 @@ Get the current value of a variable in the file, or defVal if not found in file.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZConfigFile::GetInt </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -518,20 +518,20 @@ Get the current value of a variable in the file, or defVal if not found in file.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZConfigFile::GetBool </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>bool </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -568,22 +568,22 @@ Get the current value of a variable in the file, or defVal if not found in file.
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> string ZE::ZConfigFile::GetString </td>
|
||||
<td class="md" nowrap valign="top"> std::string ZE::ZConfigFile::GetString </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>defVal</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -610,7 +610,7 @@ Get the current value of a variable in the file, or defVal if not found in file.
|
||||
<tr><td valign=top><em>defVal</em> </td><td>Value to return if var does not exist within section. </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>Contents of the variable in string format. </dd></dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>Contents of the variable in std::string format. </dd></dl>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -622,20 +622,20 @@ Get the current value of a variable in the file, or defVal if not found in file.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::SetFloat </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -674,20 +674,20 @@ Set the new value of a variable in the file to val, creating the section and var
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::SetInt </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -725,20 +725,20 @@ Set the new value of a variable in the file to val, creating the section and var
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::SetBool </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>bool </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -776,20 +776,20 @@ Set the new value of a variable in the file to val, creating the section and var
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::SetString </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>section</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>var</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>val</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -827,8 +827,8 @@ Set the new value of a variable in the file to val, creating the section and var
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::Flush </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -855,8 +855,8 @@ Writes all values and sections to file. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZConfigFile::Close </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -877,9 +877,9 @@ Flush the file and clear the filename. </td>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZConfigFile_8h-source.html">ZE_ZConfigFile.h</a><li>/src/<a class="el" href="ZE__ZConfigFile_8cpp.html">ZE_ZConfigFile.cpp</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,15 +3,15 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile::ZCF_Section Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZE::ZConfigFile::ZCF_Section</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">section</a></td><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZE::ZConfigFile::ZCF_Section</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">varList</a></td><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZE::ZConfigFile::ZCF_Section</a></td><td></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZConfigFile::ZCF_Section class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile::ZCF_Section Class Reference</h1><a href="classZE_1_1ZConfigFile_1_1ZCF__Section-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
@ -13,17 +13,17 @@
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="m0" doxytag="ZE::ZConfigFile::ZCF_Section::section"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">section</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Section name.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">section</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Section name.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="m1" doxytag="ZE::ZConfigFile::ZCF_Section::varList"></a>
|
||||
list< <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZCF_Variable</a> > </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">varList</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>STL list of variables.</em></font><br><br></td></tr>
|
||||
std::list< <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZCF_Variable</a> > </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">varList</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">STL list of variables.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZConfigFile_8h-source.html">ZE_ZConfigFile.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,15 +3,15 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile::ZCF_Variable Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZE::ZConfigFile::ZCF_Variable</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">val</a></td><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZE::ZConfigFile::ZCF_Variable</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">var</a></td><td><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZE::ZConfigFile::ZCF_Variable</a></td><td></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,27 +3,27 @@
|
||||
<title>ZE::ZConfigFile::ZCF_Variable class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZConfigFile::ZCF_Variable Class Reference</h1><a href="classZE_1_1ZConfigFile_1_1ZCF__Variable-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> class for mapping a variable name to it's value, stored in string form (later converted to bool or int if needed).
|
||||
<a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> class for mapping a variable name to it's value, stored in std::string form (later converted to bool or int if needed).
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="m0" doxytag="ZE::ZConfigFile::ZCF_Variable::var"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">var</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Variable name.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">var</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Variable name.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="m1" doxytag="ZE::ZConfigFile::ZCF_Variable::val"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">val</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Value associated with variable.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">val</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Value associated with variable.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZConfigFile_8h-source.html">ZE_ZConfigFile.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,41 +3,38 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZEngine Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a37">AddPhysFSDir</a>(string dir)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a54">BPP</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a55">BPP</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a34">CheckEvents</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a8">Clear</a>(float red=0.0f, float green=0.0f, float blue=0.0f, float alpha=1.0f)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a3">CloseDisplay</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a2">CreateDisplay</a>(string title, string icon="")</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a2">CreateDisplay</a>(std::string title, std::string icon="")</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a10">Delay</a>(Uint32 milliseconds)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a6">Display</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a42">FlushErrors</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a40">FlushErrors</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a17">GetDesiredFramerate</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a15">GetFramerate</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a14">GetFrameTime</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#d0">GetInstance</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a40">GetLastError</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a38">GetLastError</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a11">GetTime</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#d2">GetVersion</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a53">Height</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a54">Height</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a27">HideCursor</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a23">ImagesNeedReload</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a5">Initialized</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a36">InitPhysFS</a>(string argv)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a19">IsActive</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a55">IsFullscreen</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a56">IsFullscreen</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a18">IsPaused</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a25">KeyIsPressed</a>(SDLKey key)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a26">KeyPress</a>(SDLKey key)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a31">LButtonPressed</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a51">LoadFont</a>(string filename, int size)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a48">LoadImage</a>(string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a50">LoadMusic</a>(string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a49">LoadSound</a>(string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a52">LoadFont</a>(std::string filename, int size)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a49">LoadImage</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a51">LoadMusic</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a50">LoadSound</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#c1">LogError</a>(ZError error)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o15">mActive</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o2">mBPP</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
@ -45,6 +42,7 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o8">mDesiredFramerate</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o25">mErrlog</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o22">mErrorQueue</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o26">mEventFilter</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o3">mFullscreen</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o1">mHeight</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o4">mInitialized</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
@ -64,25 +62,29 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o6">mPaused</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o11">mPausedTime</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o16">mQuit</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o26">mRate</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o27">mRandGen</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o28">mRate</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o5">mScreen</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o13">mSecPerFrame</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o27">mStereo</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o29">mStereo</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o7">mUnpauseOnActive</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#o0">mWidth</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a12">PauseTimer</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a21">QuitRequested</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a46">RandDouble</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a47">RandDouble</a>(double min, double max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a44">RandLong</a>(unsigned long max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a45">RandLong</a>(long min, long max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a42">Rand</a>(unsigned int max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a43">Rand</a>(unsigned long max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a44">Rand</a>(int min, int max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a45">Rand</a>(long min, long max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a46">Rand</a>(float min, float max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a47">Rand</a>(double min, double max)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a48">RandDouble</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a32">RButtonPressed</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#d1">ReleaseInstance</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a39">ReportError</a>(ZErrorCode code, string desc="", string file="", unsigned int line=0)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a37">ReportError</a>(ZErrorCode code, std::string desc="", std::string file="", unsigned int line=0)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a20">RequestQuit</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a43">SeedRandom</a>(unsigned long seed)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a41">SeedRandGen</a>(unsigned long seed)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a16">SetDesiredFramerate</a>(Uint8 rate)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a38">SetErrorLog</a>(bool logAll, string logFile="")</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a36">SetErrorLog</a>(bool logAll, std::string logFile="")</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a35">SetEventFilter</a>(SDL_EventFilter filter)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a9">SetGL2D</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a24">SetKeyRepeatRate</a>(int rate)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
@ -94,12 +96,13 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a4">ToggleFullscreen</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a13">UnpauseTimer</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a7">Update</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a52">Width</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a41">WriteLog</a>(string str)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#p0">Version</a></td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a53">Width</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#a39">WriteLog</a>(std::string str)</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZEngine.html#c0">ZEngine</a>()</td><td><a class="el" href="classZE_1_1ZEngine.html">ZE::ZEngine</a></td><td><code> [private]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -3,25 +3,23 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZError Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZError.html">ZE::ZError</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a3">Code</a>() const</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a2">Create</a>(ZErrorCode code, string desc="", string file="", int line=0)</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a2">Code</a>() const</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a1">Create</a>(ZErrorCode code, std::string desc="", std::string file="", int line=0)</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#d0">CreateStringTable</a>()</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#d1">DestroyStringTable</a>()</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a4">LogString</a>() const</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a3">LogString</a>() const</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#n0">rCode</a></td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#n1">rDescription</a></td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#n2">rFilename</a></td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#n3">rLine</a></td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#q0">sErrorDesc</a></td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [protected, static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a0">ZError</a>(ZErrorCode code=ZERR_NONE, string desc="", string file="", int line=0)</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a1">~ZError</a>()</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZError.html#a0">ZError</a>(ZErrorCode code=ZERR_NONE, std::string desc="", std::string file="", int line=0)</td><td><a class="el" href="classZE_1_1ZError.html">ZE::ZError</a></td><td></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZError class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZError Class Reference</h1><code>#include <<a class="el" href="ZE__ZError_8h-source.html">ZE_ZError.h</a>></code>
|
||||
@ -14,39 +14,35 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a0">ZError</a> (<a class="el" href="namespaceZE.html#a24">ZErrorCode</a> code=ZERR_NONE, string desc="", string file="", int line=0)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default constructor for <a class="el" href="classZE_1_1ZError.html">ZError</a>.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a1">~ZError</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Virtual Destructor.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a2">Create</a> (<a class="el" href="namespaceZE.html#a24">ZErrorCode</a> code, string desc="", string file="", int line=0)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set members of error object.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a class="el" href="namespaceZE.html#a24">ZErrorCode</a> </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a3">Code</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get ZErrorCode of error.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a4">LogString</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get formatted string for log file.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Static Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a0">ZError</a> (<a class="el" href="namespaceZE.html#a24">ZErrorCode</a> code=ZERR_NONE, std::string desc="", std::string file="", int line=0)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default constructor for <a class="el" href="classZE_1_1ZError.html">ZError</a>.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a1">Create</a> (<a class="el" href="namespaceZE.html#a24">ZErrorCode</a> code, std::string desc="", std::string file="", int line=0)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set members of error object.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a class="el" href="namespaceZE.html#a24">ZErrorCode</a> </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a2">Code</a> () const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get ZErrorCode of error.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#a3">LogString</a> () const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get formatted string for log file.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Static Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#d0">CreateStringTable</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Construct string table for error strings.</em> <a href="#d0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#d1">DestroyStringTable</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destroy string table of error strings.</em> <a href="#d1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Construct string table for error strings.</em> <a href="#d0"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZError::rCode"></a>
|
||||
<a class="el" href="namespaceZE.html#a24">ZErrorCode</a> </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n0">rCode</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Error ID.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Error ID.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZError::rDescription"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n1">rDescription</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Error Description.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n1">rDescription</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Error Description.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZError::rFilename"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n2">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>File which error occured in.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n2">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">File which error occured in.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n3" doxytag="ZE::ZError::rLine"></a>
|
||||
unsigned int </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#n3">rLine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Line which error occured on.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Line which error occured on.</em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Static Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="q0" doxytag="ZE::ZError::sErrorDesc"></a>
|
||||
string * </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#q0">sErrorDesc</a> = NULL</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Static Array of Error Identifiers.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#q0">sErrorDesc</a> [ZERR_LAST]</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Static Array of Error Identifiers.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZError::ZError"></a><p>
|
||||
@ -58,25 +54,25 @@ string * </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html#
|
||||
<td class="md" nowrap valign="top"> ZE::ZError::ZError </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top"><a class="el" href="namespaceZE.html#a24">ZErrorCode</a> </td>
|
||||
<td class="mdname" nowrap> <em>code</em> = ZERR_NONE, </td>
|
||||
<td class="mdname" nowrap> <em>code</em> = ZERR_NONE, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>desc</em> = "", </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>desc</em> = "", </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>file</em> = "", </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>file</em> = "", </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>line</em> = 0</td>
|
||||
<td class="mdname" nowrap> <em>line</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -107,34 +103,6 @@ Make new <a class="el" href="classZE_1_1ZError.html">ZError</a> object, by defau
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="a1" doxytag="ZE::ZError::~ZError"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZError::~ZError </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing=5 cellpadding=0 border=0>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Virtual destructor making future inheritance safe. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><h2>Member Function Documentation</h2>
|
||||
<a name="d0" doxytag="ZE::ZError::CreateStringTable"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
@ -144,8 +112,8 @@ Virtual destructor making future inheritance safe. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZError::CreateStringTable </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [static]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -164,35 +132,7 @@ Virtual destructor making future inheritance safe. </td>
|
||||
Constructs a string table for errors, enabling <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> to properly delete the table on exit. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="d1" doxytag="ZE::ZError::DestroyStringTable"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZError::DestroyStringTable </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap><code> [static]</code></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellspacing=5 cellpadding=0 border=0>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Properly delete the string table, freeing all memory used by the strings. </td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="a2" doxytag="ZE::ZError::Create"></a><p>
|
||||
<a name="a1" doxytag="ZE::ZError::Create"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md">
|
||||
@ -201,25 +141,25 @@ Properly delete the string table, freeing all memory used by the strings. </
|
||||
<td class="md" nowrap valign="top"> void ZE::ZError::Create </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top"><a class="el" href="namespaceZE.html#a24">ZErrorCode</a> </td>
|
||||
<td class="mdname" nowrap> <em>code</em>, </td>
|
||||
<td class="mdname" nowrap> <em>code</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>desc</em> = "", </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>desc</em> = "", </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>string </td>
|
||||
<td class="mdname" nowrap> <em>file</em> = "", </td>
|
||||
<td class="md" nowrap>std::string </td>
|
||||
<td class="mdname" nowrap> <em>file</em> = "", </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>line</em> = 0</td>
|
||||
<td class="mdname" nowrap> <em>line</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -250,7 +190,7 @@ Set new values in <a class="el" href="classZE_1_1ZError.html">ZError</a> object.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="a3" doxytag="ZE::ZError::Code"></a><p>
|
||||
<a name="a2" doxytag="ZE::ZError::Code"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md">
|
||||
@ -258,8 +198,8 @@ Set new values in <a class="el" href="classZE_1_1ZError.html">ZError</a> object.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> <a class="el" href="namespaceZE.html#a24">ZErrorCode</a> ZE::ZError::Code </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -279,16 +219,16 @@ Access ZErrorCode of the <a class="el" href="classZE_1_1ZError.html">ZError</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a name="a4" doxytag="ZE::ZError::LogString"></a><p>
|
||||
<a name="a3" doxytag="ZE::ZError::LogString"></a><p>
|
||||
<table width="100%" cellpadding="2" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> string ZE::ZError::LogString </td>
|
||||
<td class="md" nowrap valign="top"> std::string ZE::ZError::LogString </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -309,9 +249,9 @@ Return the string to be written to the logfile. Called by <a class="el" href="cl
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZError_8h-source.html">ZE_ZError.h</a><li>/src/<a class="el" href="ZE__ZError_8cpp.html">ZE_ZError.cpp</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,19 +3,19 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZFont Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a6">DrawShadedText</a>(string text, ZImage &image) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a5">DrawText</a>(string text, ZImage &image) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a6">DrawShadedText</a>(std::string text, ZImage &image) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a5">DrawText</a>(std::string text, ZImage &image) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a15">Height</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a12">IsBold</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a13">IsItalic</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a11">IsLoaded</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a14">IsUnderlined</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a16">LineSkip</a>() const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a3">Open</a>(string filename, int size)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a3">Open</a>(std::string filename, int size)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#n4">rBGColor</a></td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#n3">rColor</a></td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a4">Release</a>()</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
@ -24,16 +24,16 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#n2">rFilename</a></td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#n1">rFont</a></td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td><code> [protected]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a8">SetBGColor</a>(Uint8 r, Uint8 g, Uint8 b)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a7">SetColor</a>(Uint8 r, Uint8 g, Uint8 b)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a7">SetColor</a>(Uint8 r, Uint8 g, Uint8 b, Uint8 a=255)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a9">SetStyle</a>(bool bold, bool italic, bool underline)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a18">StringHeight</a>(string text) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a17">StringWidth</a>(string text) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a18">StringHeight</a>(std::string text) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a17">StringWidth</a>(std::string text) const</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a0">ZFont</a>()</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a1">ZFont</a>(string filename, int size)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a1">ZFont</a>(std::string filename, int size)</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZFont.html#a2">~ZFont</a>()</td><td><a class="el" href="classZE_1_1ZFont.html">ZE::ZFont</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,71 +3,71 @@
|
||||
<title>ZE::ZFont class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZFont Class Reference</h1><code>#include <<a class="el" href="ZE__ZFont_8h-source.html">ZE_ZFont.h</a>></code>
|
||||
<p>
|
||||
<a href="classZE_1_1ZFont-members.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
<a class="el" href="classZE_1_1ZFont.html">ZFont</a> font container class, class wraps common features of SDL_TTF. Inherited from ZObject.
|
||||
<a class="el" href="classZE_1_1ZFont.html">ZFont</a> font container class, class wraps common features of SDL_TTF.
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a0">ZFont</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default Constructor.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a1">ZFont</a> (string filename, int size)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor that opens a font with a certain size.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default Constructor.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a1">ZFont</a> (std::string filename, int size)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor that opens a font with a certain size.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a2">~ZFont</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destructor, frees memory.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a3">Open</a> (string filename, int size)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Opens a font with a certain size.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Destructor, frees memory.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a3">Open</a> (std::string filename, int size)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Opens a font with a certain size.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a4">Release</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Release font.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a5">DrawText</a> (string text, <a class="el" href="classZE_1_1ZImage.html">ZImage</a> &image) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draws a string in a color to a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a6">DrawShadedText</a> (string text, <a class="el" href="classZE_1_1ZImage.html">ZImage</a> &image) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draws a string with a colored background to a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a7">SetColor</a> (Uint8 r, Uint8 g, Uint8 b)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set Text rColor.</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Release font.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a5">DrawText</a> (std::string text, <a class="el" href="classZE_1_1ZImage.html">ZImage</a> &image) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draws a std::string in a color to a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a6">DrawShadedText</a> (std::string text, <a class="el" href="classZE_1_1ZImage.html">ZImage</a> &image) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draws a std::string with a colored background to a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a7">SetColor</a> (Uint8 r, Uint8 g, Uint8 b, Uint8 a=255)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set Text rColor.</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a8">SetBGColor</a> (Uint8 r, Uint8 g, Uint8 b)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set Background rColor.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set Background rColor.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a9">SetStyle</a> (bool bold, bool italic, bool underline)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set display format.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set display format.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a10">Resize</a> (int size)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Resize Font.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Resize Font.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a11">IsLoaded</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if file is loaded.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if file is loaded.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a12">IsBold</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Bold Setting.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Bold Setting.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a13">IsItalic</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Italic Setting.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Italic Setting.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a14">IsUnderlined</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Underlined Setting.</em> <a href="#a14"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Underlined Setting.</em> <a href="#a14"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a15">Height</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Height of Font.</em> <a href="#a15"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Height of Font.</em> <a href="#a15"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a16">LineSkip</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Line Skip for Font.</em> <a href="#a16"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a17">StringWidth</a> (string text) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get String Width.</em> <a href="#a17"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a18">StringHeight</a> (string text) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get String Height.</em> <a href="#a18"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Line Skip for Font.</em> <a href="#a16"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a17">StringWidth</a> (std::string text) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get String Width.</em> <a href="#a17"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#a18">StringHeight</a> (std::string text) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get String Height.</em> <a href="#a18"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZFont::rEngine"></a>
|
||||
<a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> * </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n0">rEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZFont::rFont"></a>
|
||||
TTF_Font * </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n1">rFont</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to font data.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to font data.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZFont::rFilename"></a>
|
||||
string </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n2">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Filename, for resizing.</em></font><br><br></td></tr>
|
||||
std::string </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n2">rFilename</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Filename, for resizing.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n3" doxytag="ZE::ZFont::rColor"></a>
|
||||
SDL_Color </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n3">rColor</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>SDL_Color for current text color.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">SDL_Color for current text color.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n4" doxytag="ZE::ZFont::rBGColor"></a>
|
||||
SDL_Color </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#n4">rBGColor</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>SDL_Color for background color to be used in shaded draws.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">SDL_Color for background color to be used in shaded draws.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZFont::ZFont"></a><p>
|
||||
@ -78,8 +78,8 @@ SDL_Color </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html#
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZFont::ZFont </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -106,14 +106,14 @@ Default Constructor, does nothing. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZFont::ZFont </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>filename</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>filename</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>size</em></td>
|
||||
<td class="mdname" nowrap> <em>size</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -150,8 +150,8 @@ Constructor simply calls <a class="el" href="classZE_1_1ZFont.html#a3">ZFont::Op
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> virtual ZE::ZFont::~ZFont </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -179,14 +179,14 @@ Destructor calls <a class="el" href="classZE_1_1ZFont.html#a4">ZFont::Release()<
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::Open </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>filename</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>filename</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>size</em></td>
|
||||
<td class="mdname" nowrap> <em>size</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -223,8 +223,8 @@ Opens a font given a filename and a point size. <dl compact><dt><b>Parameters:</
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::Release </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -251,14 +251,14 @@ Release memory held by font. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::DrawText </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>text</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>text</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap><a class="el" href="classZE_1_1ZImage.html">ZImage</a> & </td>
|
||||
<td class="mdname" nowrap> <em>image</em></td>
|
||||
<td class="mdname" nowrap> <em>image</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -295,14 +295,14 @@ Draw to a surface in specified color and associate that surface with a <a class=
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::DrawShadedText </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname" nowrap> <em>text</em>, </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname" nowrap> <em>text</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap><a class="el" href="classZE_1_1ZImage.html">ZImage</a> & </td>
|
||||
<td class="mdname" nowrap> <em>image</em></td>
|
||||
<td class="mdname" nowrap> <em>image</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -322,7 +322,7 @@ Draw to a surface in specified color and associate that surface with a <a class=
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Draw to a surface a string with a background of rBGColor and lettering in the normal color and associate that surface with a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
Draw to a surface a std::string with a background of rBGColor and lettering in the normal color and associate that surface with a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>text</em> </td><td>String to write. </td></tr>
|
||||
<tr><td valign=top><em>image</em> </td><td><a class="el" href="classZE_1_1ZImage.html">ZImage</a> to draw to. </td></tr>
|
||||
@ -340,19 +340,25 @@ Draw to a surface a string with a background of rBGColor and lettering in the no
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::SetColor </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>r</em>, </td>
|
||||
<td class="mdname" nowrap> <em>r</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>g</em>, </td>
|
||||
<td class="mdname" nowrap> <em>g</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>b</em></td>
|
||||
<td class="mdname" nowrap> <em>b</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>a</em> = 255</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -377,6 +383,7 @@ Set rColor of Text Output. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<tr><td valign=top><em>r</em> </td><td>Red component of color (0-255). </td></tr>
|
||||
<tr><td valign=top><em>g</em> </td><td>Green component of color (0-255). </td></tr>
|
||||
<tr><td valign=top><em>b</em> </td><td>Blue component of color (0-255). </td></tr>
|
||||
<tr><td valign=top><em>a</em> </td><td>Alpha component of drawn font, including background if present. (0-255) (Optional, defaults to 255.) </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
</td>
|
||||
@ -391,19 +398,19 @@ Set rColor of Text Output. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::SetBGColor </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>r</em>, </td>
|
||||
<td class="mdname" nowrap> <em>r</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>g</em>, </td>
|
||||
<td class="mdname" nowrap> <em>g</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>b</em></td>
|
||||
<td class="mdname" nowrap> <em>b</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -442,19 +449,19 @@ Set rColor of Background for Shaded Draw. <dl compact><dt><b>Parameters:</b></dt
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::SetStyle </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">bool </td>
|
||||
<td class="mdname" nowrap> <em>bold</em>, </td>
|
||||
<td class="mdname" nowrap> <em>bold</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>bool </td>
|
||||
<td class="mdname" nowrap> <em>italic</em>, </td>
|
||||
<td class="mdname" nowrap> <em>italic</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>bool </td>
|
||||
<td class="mdname" nowrap> <em>underline</em></td>
|
||||
<td class="mdname" nowrap> <em>underline</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -493,8 +500,8 @@ Set display format (bold, italic, underline). <dl compact><dt><b>Parameters:</b>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZFont::Resize </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>size</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>size</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -526,8 +533,8 @@ Release and Reopen font in new size. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZFont::IsLoaded </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -555,8 +562,8 @@ Check if file is loaded and pointer to data is non-NULL. <dl compact><dt><b>Retu
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZFont::IsBold </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -584,8 +591,8 @@ Check if font output is currently bold. <dl compact><dt><b>Returns:</b></dt><dd>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZFont::IsItalic </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -613,8 +620,8 @@ Check if font output is currently italic. <dl compact><dt><b>Returns:</b></dt><d
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZFont::IsUnderlined </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -642,8 +649,8 @@ Check if font output is currently underline. <dl compact><dt><b>Returns:</b></dt
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZFont::Height </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -671,8 +678,8 @@ Check font height as reported by SDL_ttf. <dl compact><dt><b>Returns:</b></dt><d
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZFont::LineSkip </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -700,9 +707,9 @@ Check font line skip as reported by SDL_ttf. <dl compact><dt><b>Returns:</b></dt
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZFont::StringWidth </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>text</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>text</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -735,9 +742,9 @@ Get Width of String in Current Font in Pixels. <dl compact><dt><b>Parameters:</b
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZFont::StringHeight </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>text</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>text</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -764,9 +771,9 @@ Get Height of String in Current Font in Pixels. <dl compact><dt><b>Parameters:</
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZFont_8h-source.html">ZE_ZFont.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,21 +3,21 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZImage Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a>, including all inherited members.<table>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a27">Alpha</a>() const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a10">Attach</a>(SDL_Surface *surface)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a18">Bind</a>() const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a19">Draw</a>(int x, int y) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a20">Draw</a>(float x, float y) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(int x, int y, float angle) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a22">DrawRotated</a>(float x, float y, float angle) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a19">Draw</a>(int x, int y, Uint8 zIndex=0) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a20">Draw</a>(float x, float y, Uint8 zIndex=0) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a21">DrawRotated</a>(int x, int y, float angle, Uint8 zIndex=0) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a22">DrawRotated</a>(float x, float y, float angle, Uint8 zIndex=0) const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a15">Flip</a>(bool horizontal, bool vertical)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a26">Height</a>() const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a23">IsLoaded</a>() const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a7">Open</a>(string filename)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a7">Open</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a8">OpenFromImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a9">OpenFromImage</a>(const ZImage &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#n9">rAlpha</a></td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td><code> [protected]</code></td></tr>
|
||||
@ -40,14 +40,14 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a25">Width</a>() const</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a0">ZImage</a>()</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a1">ZImage</a>(const ZImage &rhs)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a2">ZImage</a>(string filename)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a2">ZImage</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a3">ZImage</a>(SDL_Surface *surface)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a4">ZImage</a>(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a5">ZImage</a>(const ZImage &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZImage.html#a6">~ZImage</a>()</td><td><a class="el" href="classZE_1_1ZImage.html">ZE::ZImage</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZImage class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZImage Class Reference</h1><code>#include <<a class="el" href="ZE__ZImage_8h-source.html">ZE_ZImage.h</a>></code>
|
||||
@ -13,94 +13,94 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a0">ZImage</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default Constructor.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default Constructor.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a1">ZImage</a> (const ZImage &rhs)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Copy constructor for <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a2">ZImage</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor to Construct from File.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Copy constructor for <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a2">ZImage</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor to Construct from File.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a3">ZImage</a> (SDL_Surface *surface)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor to Construct from SDL_Surface*.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor to Construct from SDL_Surface*.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a4">ZImage</a> (SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor to Construct from part of an SDL_Surface*.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor to Construct from part of an SDL_Surface*.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a5">ZImage</a> (const ZImage &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor to Construct from part of another <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor to Construct from part of another <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a6">~ZImage</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destructor, frees memory.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a7">Open</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Opens a file.</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Destructor, frees memory.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a7">Open</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Opens a file.</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a8">OpenFromImage</a> (SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Cuts part of an existing image to create a new image.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Cuts part of an existing image to create a new image.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a9">OpenFromImage</a> (const ZImage &img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Cuts part of an existing <a class="el" href="classZE_1_1ZImage.html">ZImage</a> to create a new image.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Cuts part of an existing <a class="el" href="classZE_1_1ZImage.html">ZImage</a> to create a new image.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a10">Attach</a> (SDL_Surface *surface)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Attach an existing surface to class.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Attach an existing surface to class.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a11">Reload</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Reattach a preloaded texture that has been lost.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Reattach a preloaded texture that has been lost.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a12">Release</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Releases image.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Releases image.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a13">SetAlpha</a> (Uint8 alpha)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set alpha value (translucency) of image.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set alpha value (translucency) of image.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a14">SetColorKey</a> (Uint8 red, Uint8 green, Uint8 blue)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Set Color Key (transparent color) of image.</em> <a href="#a14"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Set Color Key (transparent color) of image.</em> <a href="#a14"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a15">Flip</a> (bool horizontal, bool vertical)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Flip image over one or both axes.</em> <a href="#a15"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Flip image over one or both axes.</em> <a href="#a15"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a16">Stretch</a> (float xFactor, float yFactor)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Stretch the image by a certain X and Y factor.</em> <a href="#a16"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Stretch the image by a certain X and Y factor.</em> <a href="#a16"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a17">Resize</a> (unsigned int width, unsigned int height)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Resizes an image, stretching to new size.</em> <a href="#a17"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Resizes an image, stretching to new size.</em> <a href="#a17"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a18">Bind</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>OpenGL related bind call.</em> <a href="#a18"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a19">Draw</a> (int x, int y) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draw Image to Screen.</em> <a href="#a19"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a20">Draw</a> (float x, float y) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draw Image to Screen.</em> <a href="#a20"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a21">DrawRotated</a> (int x, int y, float angle) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draw Image rotated to screen.</em> <a href="#a21"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a22">DrawRotated</a> (float x, float y, float angle) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draw Image rotated to screen.</em> <a href="#a22"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">OpenGL related bind call.</em> <a href="#a18"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a19">Draw</a> (int x, int y, Uint8 zIndex=0) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draw Image to Screen.</em> <a href="#a19"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a20">Draw</a> (float x, float y, Uint8 zIndex=0) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draw Image to Screen.</em> <a href="#a20"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a21">DrawRotated</a> (int x, int y, float angle, Uint8 zIndex=0) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draw Image rotated to screen.</em> <a href="#a21"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a22">DrawRotated</a> (float x, float y, float angle, Uint8 zIndex=0) const</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draw Image rotated to screen.</em> <a href="#a22"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a23">IsLoaded</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if file is loaded.</em> <a href="#a23"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if file is loaded.</em> <a href="#a23"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>SDL_Surface * </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a24">Surface</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get SDL_Surface. Get SDL_Surface pointer to actual image data.</em> <a href="#a24"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get SDL_Surface. Get SDL_Surface pointer to actual image data.</em> <a href="#a24"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a25">Width</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Width.</em> <a href="#a25"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Width.</em> <a href="#a25"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a26">Height</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Height.</em> <a href="#a26"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Height.</em> <a href="#a26"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>Uint8 </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#a27">Alpha</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Alpha component.</em> <a href="#a27"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Alpha component.</em> <a href="#a27"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZImage::rEngine"></a>
|
||||
<a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> * </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n0">rEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZImage::rTexMinX"></a>
|
||||
GLfloat </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n1">rTexMinX</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Texture lower X, used internally for flip.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Texture lower X, used internally for flip.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZImage::rTexMinY"></a>
|
||||
GLfloat </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n2">rTexMinY</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Texture lower Y, used internally for flip.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Texture lower Y, used internally for flip.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n3" doxytag="ZE::ZImage::rTexMaxX"></a>
|
||||
GLfloat </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n3">rTexMaxX</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Texture X width ratio, used internally by OpenGL.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Texture X width ratio, used internally by OpenGL.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n4" doxytag="ZE::ZImage::rTexMaxY"></a>
|
||||
GLfloat </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n4">rTexMaxY</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Texture Y width ratio, used internally by OpenGL.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Texture Y width ratio, used internally by OpenGL.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n5" doxytag="ZE::ZImage::rImage"></a>
|
||||
SDL_Surface * </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n5">rImage</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Stored texture for future use.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Stored texture for future use.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n6" doxytag="ZE::ZImage::rTexID"></a>
|
||||
unsigned int </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n6">rTexID</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Texture ID for OpenGL.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Texture ID for OpenGL.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n7" doxytag="ZE::ZImage::rWidth"></a>
|
||||
unsigned int </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n7">rWidth</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Current draw width of Texture.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Current draw width of Texture.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n8" doxytag="ZE::ZImage::rHeight"></a>
|
||||
unsigned int </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n8">rHeight</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Current draw height of Texture.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Current draw height of Texture.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n9" doxytag="ZE::ZImage::rAlpha"></a>
|
||||
Uint8 </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n9">rAlpha</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Stored alpha value for drawing texture.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Stored alpha value for drawing texture.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZImage::ZImage"></a><p>
|
||||
@ -111,8 +111,8 @@ Uint8 </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html#n9"
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -140,8 +140,8 @@ Default Constructor, initializes variables. </td>
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZImage & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -173,9 +173,9 @@ Creates one <a class="el" href="classZE_1_1ZImage.html">ZImage</a> using another
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -208,8 +208,8 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a7">ZI
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">SDL_Surface * </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>surface</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>surface</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -242,31 +242,31 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a10">Z
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">SDL_Surface * </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -286,8 +286,7 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a10">Z
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZImage::OpenFromImage</a> with an SDL_Surface*.
|
||||
<p>
|
||||
Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZImage::OpenFromImage</a> with an SDL_Surface*.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>img</em> </td><td>Image to take new image from. </td></tr>
|
||||
@ -309,31 +308,31 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZI
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZImage & </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -353,8 +352,7 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZI
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZImage::OpenFromImage</a> with a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.
|
||||
<p>
|
||||
Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZImage::OpenFromImage</a> with a <a class="el" href="classZE_1_1ZImage.html">ZImage</a>.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>img</em> </td><td>Image to take new image from. </td></tr>
|
||||
@ -375,8 +373,8 @@ Constructor is same as calling <a class="el" href="classZE_1_1ZImage.html#a8">ZI
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZImage::~ZImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -404,9 +402,9 @@ Destructor calls <a class="el" href="classZE_1_1ZImage.html#a12">ZImage::Release
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Open </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -439,31 +437,31 @@ Open a file using <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a>. Load
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::OpenFromImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">SDL_Surface * </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -483,8 +481,7 @@ Open a file using <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a>. Load
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Cut part of an SDL_Surface to create a new Image.
|
||||
<p>
|
||||
Cut part of an SDL_Surface to create a new Image.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>img</em> </td><td>SDL_Surface* to take new image from. </td></tr>
|
||||
@ -506,31 +503,31 @@ Cut part of an SDL_Surface to create a new Image.
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::OpenFromImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZImage & </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
<td class="mdname" nowrap> <em>img</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
<td class="mdname" nowrap> <em>w</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Sint16 </td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
<td class="mdname" nowrap> <em>h</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -550,8 +547,7 @@ Cut part of an SDL_Surface to create a new Image.
|
||||
<td>
|
||||
|
||||
<p>
|
||||
Cut part of another <a class="el" href="classZE_1_1ZImage.html">ZImage</a> to create a new Image.
|
||||
<p>
|
||||
Cut part of another <a class="el" href="classZE_1_1ZImage.html">ZImage</a> to create a new Image.<p>
|
||||
<dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>img</em> </td><td><a class="el" href="classZE_1_1ZImage.html">ZImage</a> to take new image from. </td></tr>
|
||||
@ -573,8 +569,8 @@ Cut part of another <a class="el" href="classZE_1_1ZImage.html">ZImage</a> to cr
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Attach </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">SDL_Surface * </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>surface</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>surface</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -606,8 +602,8 @@ Attach a pointer to instance of <a class="el" href="classZE_1_1ZImage.html">ZIma
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Reload </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -634,8 +630,8 @@ Attach loaded textures which have been lost due to loss of focus, should be call
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Release </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -663,8 +659,8 @@ Frees memory via call to SDL_FreeSurface for the image. </td>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::SetAlpha </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Uint8 </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>alpha</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>alpha</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -698,19 +694,19 @@ Set translucency value 0-255 (0 is transparent, 255 = opaque). <dl compact><dt><
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::SetColorKey </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>red</em>, </td>
|
||||
<td class="mdname" nowrap> <em>red</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>green</em>, </td>
|
||||
<td class="mdname" nowrap> <em>green</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>blue</em></td>
|
||||
<td class="mdname" nowrap> <em>blue</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -749,13 +745,13 @@ Set color which will not be drawn in image. <dl compact><dt><b>Parameters:</b></
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Flip </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">bool </td>
|
||||
<td class="mdname" nowrap> <em>horizontal</em>, </td>
|
||||
<td class="mdname" nowrap> <em>horizontal</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>bool </td>
|
||||
<td class="mdname" nowrap> <em>vertical</em></td>
|
||||
<td class="mdname" nowrap> <em>vertical</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -793,13 +789,13 @@ Flip image vertical and/or horizontal. <dl compact><dt><b>Parameters:</b></dt><d
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Stretch </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>xFactor</em>, </td>
|
||||
<td class="mdname" nowrap> <em>xFactor</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>yFactor</em></td>
|
||||
<td class="mdname" nowrap> <em>yFactor</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -837,13 +833,13 @@ Stretch image using a factor to multiply width and height by. <dl compact><dt><b
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Resize </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">unsigned int </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>unsigned int </td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -880,8 +876,8 @@ Stretch image to new width and height. <dl compact><dt><b>Parameters:</b></dt><d
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Bind </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -909,13 +905,19 @@ OpenGL related bind call, only available in case you want to bind image in 3D. D
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Draw </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>zIndex</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -939,6 +941,7 @@ Draw Image to screen at specified location. <dl compact><dt><b>Parameters:</b></
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>x</em> </td><td>X coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>y</em> </td><td>Y coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>zLayer</em> </td><td>Special parameter defining draw order of the image, defaults to 0 which means 'draw immediately.' (1-255 define order, lowest first.) </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
</td>
|
||||
@ -953,13 +956,19 @@ Draw Image to screen at specified location. <dl compact><dt><b>Parameters:</b></
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::Draw </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>zIndex</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -984,6 +993,7 @@ Draw Image to screen at specified location. <dl compact><dt><b>Since:</b></dt><d
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>x</em> </td><td>X coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>y</em> </td><td>Y coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>zLayer</em> </td><td>Special parameter defining draw order of the image, defaults to 0 which means 'draw immediately.' </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
</td>
|
||||
@ -998,19 +1008,25 @@ Draw Image to screen at specified location. <dl compact><dt><b>Since:</b></dt><d
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::DrawRotated </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>angle</em></td>
|
||||
<td class="mdname" nowrap> <em>angle</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>zIndex</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -1035,6 +1051,7 @@ Image is rotated about it's own center by specified angle, then drawn to screen.
|
||||
<tr><td valign=top><em>x</em> </td><td>X coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>y</em> </td><td>Y coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>angle</em> </td><td>Angle in degrees to rotate image. </td></tr>
|
||||
<tr><td valign=top><em>zLayer</em> </td><td>Special parameter defining draw order of the image, defaults to 0 which means 'draw immediately.' </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
</td>
|
||||
@ -1049,19 +1066,25 @@ Image is rotated about it's own center by specified angle, then drawn to screen.
|
||||
<td class="md" nowrap valign="top"> void ZE::ZImage::DrawRotated </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>angle</em></td>
|
||||
<td class="mdname" nowrap> <em>angle</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>zIndex</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -1087,6 +1110,7 @@ Image is rotated about it's own center by specified angle, then drawn to screen.
|
||||
<tr><td valign=top><em>x</em> </td><td>X coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>y</em> </td><td>Y coord to draw Image to. </td></tr>
|
||||
<tr><td valign=top><em>angle</em> </td><td>Angle in degrees to rotate image. </td></tr>
|
||||
<tr><td valign=top><em>zLayer</em> </td><td>Special parameter defining draw order of the image, defaults to 0 which means 'draw immediately.' </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
</td>
|
||||
@ -1100,8 +1124,8 @@ Image is rotated about it's own center by specified angle, then drawn to screen.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZImage::IsLoaded </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -1129,8 +1153,8 @@ Check if surface is a valid GL texture. (does not detect surface loss) <dl compa
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> SDL_Surface * ZE::ZImage::Surface </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -1158,8 +1182,8 @@ Check if surface is a valid GL texture. (does not detect surface loss) <dl compa
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZImage::Width </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -1187,8 +1211,8 @@ Get Current Width of Image. <dl compact><dt><b>Returns:</b></dt><dd>Image Width.
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZImage::Height </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -1216,8 +1240,8 @@ Get Current Height of Image. <dl compact><dt><b>Returns:</b></dt><dd>Image Heigh
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> Uint8 ZE::ZImage::Alpha </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -1240,9 +1264,9 @@ Get current alpha value of image. <dl compact><dt><b>Since:</b></dt><dd>0.8.2 </
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZImage_8h-source.html">ZE_ZImage.h</a><li>/src/<a class="el" href="ZE__ZImage_8cpp.html">ZE_ZImage.cpp</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZMusic Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a>, including all inherited members.<table>
|
||||
@ -11,7 +11,7 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a13">IsPaused</a>() const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a12">IsPlaying</a>() const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#p0">LoopInfinite</a></td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a3">Open</a>(string filename)</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a3">Open</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a6">Pause</a>() const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a5">Play</a>(int loopNum=0, int fadeTime=0) const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a4">Release</a>()</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
@ -23,11 +23,11 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a7">Unpause</a>() const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a14">Volume</a>() const</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a0">ZMusic</a>()</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a1">ZMusic</a>(string filename)</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a1">ZMusic</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZMusic.html#a2">~ZMusic</a>()</td><td><a class="el" href="classZE_1_1ZMusic.html">ZE::ZMusic</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZMusic class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZMusic Class Reference</h1><code>#include <<a class="el" href="ZE__ZMusic_8h-source.html">ZE_ZMusic.h</a>></code>
|
||||
@ -13,48 +13,48 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a0">ZMusic</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default Constructor.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a1">ZMusic</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor that opens a music file.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default Constructor.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a1">ZMusic</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor that opens a music file.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a2">~ZMusic</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destructor, frees memory.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a3">Open</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Opens a music file.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Destructor, frees memory.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a3">Open</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Opens a music file.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a4">Release</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Release music.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Release music.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a5">Play</a> (int loopNum=0, int fadeTime=0) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Play currently loaded music.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Play currently loaded music.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a6">Pause</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pause music.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pause music.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a7">Unpause</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Unpause music.</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Unpause music.</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a8">Rewind</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Rewind music.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Rewind music.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a9">Stop</a> (int fadeTime=0) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Stop music.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Stop music.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a10">SetVolume</a> (int volume)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Change Volume.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Change Volume.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a11">IsLoaded</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if file is loaded.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if file is loaded.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a12">IsPlaying</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if music is Playing.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if music is Playing.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a13">IsPaused</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if music is Paused.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if music is Paused.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#a14">Volume</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Find Current Volume of Music.</em> <a href="#a14"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Find Current Volume of Music.</em> <a href="#a14"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Static Public Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="p0" doxytag="ZE::ZMusic::LoopInfinite"></a>
|
||||
const int </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#p0">LoopInfinite</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Static Variable For Infinite loop of sound. (Defined as -1).</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Static Variable For Infinite loop of sound. (Defined as -1).</em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZMusic::rEngine"></a>
|
||||
<a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> * </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#n0">rEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZMusic::rMusic"></a>
|
||||
Mix_Music * </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html#n1">rMusic</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to music data.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to music data.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZMusic::ZMusic"></a><p>
|
||||
@ -65,8 +65,8 @@ Mix_Music * </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.ht
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZMusic::ZMusic </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -93,9 +93,9 @@ Default Constructor, does nothing. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZMusic::ZMusic </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -127,8 +127,8 @@ Constructor simply calls <a class="el" href="classZE_1_1ZMusic.html#a3">ZMusic::
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> virtual ZE::ZMusic::~ZMusic </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -156,9 +156,9 @@ Destructor calls <a class="el" href="classZE_1_1ZMusic.html#a4">ZMusic::Release(
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Open </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -190,8 +190,8 @@ Open a music file to be used. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Release </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -219,13 +219,13 @@ Release memory held by music data. </td>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Play </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname" nowrap> <em>loopNum</em> = 0, </td>
|
||||
<td class="mdname" nowrap> <em>loopNum</em> = 0, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>fadeTime</em> = 0</td>
|
||||
<td class="mdname" nowrap> <em>fadeTime</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -262,8 +262,8 @@ Play music currently loaded in <a class="el" href="classZE_1_1ZMusic.html">ZMusi
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Pause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -290,8 +290,8 @@ Pause currently playing music. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Unpause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -318,8 +318,8 @@ Unpause currently paused music. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Rewind </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -347,8 +347,8 @@ Rewind music to beginning. </td>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::Stop </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>fadeTime</em> = 0 </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>fadeTime</em> = 0 </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -381,8 +381,8 @@ Stop currently playing music, if fadeTime is not zero, fade out over specified t
|
||||
<td class="md" nowrap valign="top"> void ZE::ZMusic::SetVolume </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>volume</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>volume</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -414,8 +414,8 @@ Change volume of currently playing music. <dl compact><dt><b>Parameters:</b></dt
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZMusic::IsLoaded </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -443,8 +443,8 @@ Check if file is loaded and pointer to data is non-NULL. <dl compact><dt><b>Retu
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZMusic::IsPlaying </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -472,8 +472,8 @@ Check if music is playing, specifically if it is not stopped. (Paused state shou
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZMusic::IsPaused </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -501,8 +501,8 @@ Check if music is "playing" but currently paused. <dl compact><dt><b>Returns:</b
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZMusic::Volume </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -524,9 +524,9 @@ Get current volume of music represented as a value from 0-128. <dl compact><dt><
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZMusic_8h-source.html">ZE_ZMusic.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZRect Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZRect.html">ZE::ZRect</a>, including all inherited members.<table>
|
||||
@ -36,9 +36,9 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZRect.html#a2">ZRect</a>(const SDL_Rect &rect)</td><td><a class="el" href="classZE_1_1ZRect.html">ZE::ZRect</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZRect.html#a3">ZRect</a>(const ZRect &rhs)</td><td><a class="el" href="classZE_1_1ZRect.html">ZE::ZRect</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZRect.html#a5">~ZRect</a>()</td><td><a class="el" href="classZE_1_1ZRect.html">ZE::ZRect</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZRect class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZRect Class Reference</h1><code>#include <<a class="el" href="ZE__ZRect_8h-source.html">ZE_ZRect.h</a>></code>
|
||||
@ -13,70 +13,70 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a0">ZRect</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a1">ZRect</a> (float x, float y, float width, float height)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that takes inital values.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that takes inital values.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a2">ZRect</a> (const SDL_Rect &rect)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that uses an SDL_Rect.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that uses an SDL_Rect.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a3">ZRect</a> (const ZRect &rhs)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Copy constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Copy constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>const ZRect & </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a4">operator=</a> (const ZRect &rhs)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Overload for = operator with <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Overload for = operator with <a class="el" href="classZE_1_1ZRect.html">ZRect</a>.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a5">~ZRect</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Virtual Destructor.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Virtual Destructor.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a6">operator<</a> (const ZRect &rhs) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Overload for < operator with <a class="el" href="classZE_1_1ZRect.html">ZRect</a>, based upon location then size.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Overload for < operator with <a class="el" href="classZE_1_1ZRect.html">ZRect</a>, based upon location then size.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a7">Draw</a> (Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha=255) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Draw rectangle. (filled).</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Draw rectangle. (filled).</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a8">Move</a> (float x, float y)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Changes the location of the rectangle.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Changes the location of the rectangle.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a9">MoveRel</a> (float xMove, float yMove)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Changes the location of the rectangle based upon the current location.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Changes the location of the rectangle based upon the current location.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a10">Resize</a> (float width, float height)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Resize rectangle.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Resize rectangle.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a11">ResizeRel</a> (float widthChange, float heightChange)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Grows or shrinks current rectangle.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Grows or shrinks current rectangle.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a12">Intersects</a> (const ZRect &rect) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if one <a class="el" href="classZE_1_1ZRect.html">ZRect</a> intersects another.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if one <a class="el" href="classZE_1_1ZRect.html">ZRect</a> intersects another.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a13">Contains</a> (float x, float y) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if a rectangle contains a given point.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if a rectangle contains a given point.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a14">Contains</a> (const ZRect &rect) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if a rectangle contains a given point.</em> <a href="#a14"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if a rectangle contains a given point.</em> <a href="#a14"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>ZRect </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a15">Intersection</a> (const ZRect &rect) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Finds intersection of two rectangles.</em> <a href="#a15"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Finds intersection of two rectangles.</em> <a href="#a15"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>SDL_Rect </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a16">SDLrect</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Returns an SDL_Rect representing the rectangle.</em> <a href="#a16"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Returns an SDL_Rect representing the rectangle.</em> <a href="#a16"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a17">X</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Returns X Location.</em> <a href="#a17"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Returns X Location.</em> <a href="#a17"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a18">Y</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Returns Y Location.</em> <a href="#a18"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Returns Y Location.</em> <a href="#a18"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a19">Left</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Return position of left side.</em> <a href="#a19"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Return position of left side.</em> <a href="#a19"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a20">Right</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Return position of right side.</em> <a href="#a20"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Return position of right side.</em> <a href="#a20"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a21">Top</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Return position of top side.</em> <a href="#a21"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Return position of top side.</em> <a href="#a21"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a22">Bottom</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Return position of bottom side.</em> <a href="#a22"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Return position of bottom side.</em> <a href="#a22"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a23">Width</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Returns Width.</em> <a href="#a23"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Returns Width.</em> <a href="#a23"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#a24">Height</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Returns Height.</em> <a href="#a24"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Returns Height.</em> <a href="#a24"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZRect::rX"></a>
|
||||
float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#n0">rX</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>X Position of top left corner of rectangle.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">X Position of top left corner of rectangle.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZRect::rY"></a>
|
||||
float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#n1">rY</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Y Position of top left corner of rectangle.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Y Position of top left corner of rectangle.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZRect::rWidth"></a>
|
||||
float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#n2">rWidth</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Width of Rectangle.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Width of Rectangle.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n3" doxytag="ZE::ZRect::rHeight"></a>
|
||||
float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#n3">rHeight</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Height of Rectangle.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Height of Rectangle.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZRect::ZRect"></a><p>
|
||||
@ -87,8 +87,8 @@ float </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html#n3">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZRect::ZRect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -116,25 +116,25 @@ Default constructor, initializes all values to zero. </td>
|
||||
<td class="md" nowrap valign="top"> ZE::ZRect::ZRect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
<td class="mdname" nowrap> <em>y</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -174,8 +174,8 @@ Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that takes
|
||||
<td class="md" nowrap valign="top"> ZE::ZRect::ZRect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const SDL_Rect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -208,8 +208,8 @@ Constructor for <a class="el" href="classZE_1_1ZRect.html">ZRect</a> that initia
|
||||
<td class="md" nowrap valign="top"> ZE::ZRect::ZRect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -241,8 +241,8 @@ Takes a <a class="el" href="classZE_1_1ZRect.html">ZRect</a> and constructs a ne
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZRect::~ZRect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -271,8 +271,8 @@ Virtual destructor making future inheritance safe. </td>
|
||||
<td class="md" nowrap valign="top"> const ZRect & ZE::ZRect::operator= </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -306,8 +306,8 @@ Copies all values from one <a class="el" href="classZE_1_1ZRect.html">ZRect</a>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZRect::operator< </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rhs</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -341,25 +341,25 @@ Rectangles are sorted by y value, followed by x value, if they start at the same
|
||||
<td class="md" nowrap valign="top"> void ZE::ZRect::Draw </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>red</em>, </td>
|
||||
<td class="mdname" nowrap> <em>red</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>green</em>, </td>
|
||||
<td class="mdname" nowrap> <em>green</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>blue</em>, </td>
|
||||
<td class="mdname" nowrap> <em>blue</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>Uint8 </td>
|
||||
<td class="mdname" nowrap> <em>alpha</em> = 255</td>
|
||||
<td class="mdname" nowrap> <em>alpha</em> = 255</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -399,13 +399,13 @@ Draw the <a class="el" href="classZE_1_1ZRect.html">ZRect</a>, this function is
|
||||
<td class="md" nowrap valign="top"> void ZE::ZRect::Move </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -443,13 +443,13 @@ Changes the current x,y position of the rectangle. <dl compact><dt><b>Parameters
|
||||
<td class="md" nowrap valign="top"> void ZE::ZRect::MoveRel </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>xMove</em>, </td>
|
||||
<td class="mdname" nowrap> <em>xMove</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>yMove</em></td>
|
||||
<td class="mdname" nowrap> <em>yMove</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -487,13 +487,13 @@ Changes the current x,y position of the rectangle relative to the current locati
|
||||
<td class="md" nowrap valign="top"> void ZE::ZRect::Resize </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
<td class="mdname" nowrap> <em>width</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
<td class="mdname" nowrap> <em>height</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -531,13 +531,13 @@ Changes the current width and height of the rectangle. <dl compact><dt><b>Parame
|
||||
<td class="md" nowrap valign="top"> void ZE::ZRect::ResizeRel </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>widthChange</em>, </td>
|
||||
<td class="mdname" nowrap> <em>widthChange</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>heightChange</em></td>
|
||||
<td class="mdname" nowrap> <em>heightChange</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -575,8 +575,8 @@ Changes the current width and height of the rectangle based upon current values.
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZRect::Intersects </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -610,13 +610,13 @@ Checks for overlap and returns boolean value based on if overlap exists. <dl com
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZRect::Contains </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">float </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
<td class="mdname" nowrap> <em>x</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>float </td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
<td class="mdname" nowrap> <em>y</em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -655,8 +655,8 @@ Checks point against boundaries of rectangle and returns result. <dl compact><dt
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZRect::Contains </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -690,8 +690,8 @@ Checks point against boundaries of rectangle and returns result. <dl compact><dt
|
||||
<td class="md" nowrap valign="top"> ZRect ZE::ZRect::Intersection </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const ZRect & </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>rect</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -724,8 +724,8 @@ Checks for intersection, and returns rectangle where the two rectangles intersec
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> SDL_Rect ZE::ZRect::SDLrect </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -753,8 +753,8 @@ Makes a SDL_Rect representing the rectangle, for use where functions require an
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::X </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -782,8 +782,8 @@ Access private X location member. <dl compact><dt><b>Returns:</b></dt><dd>Value
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Y </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -811,8 +811,8 @@ Access private Y location member. <dl compact><dt><b>Returns:</b></dt><dd>Value
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Left </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -840,8 +840,8 @@ Find X position of left side of rectangle. <dl compact><dt><b>Returns:</b></dt><
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Right </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -869,8 +869,8 @@ Find X position of right side of rectangle. <dl compact><dt><b>Returns:</b></dt>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Top </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -898,8 +898,8 @@ Find Y position of top side of rectangle. <dl compact><dt><b>Returns:</b></dt><d
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Bottom </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -927,8 +927,8 @@ Find Y position of left side of rectangle. <dl compact><dt><b>Returns:</b></dt><
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Width </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -956,8 +956,8 @@ Access private width member. <dl compact><dt><b>Returns:</b></dt><dd>Value of mW
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> float ZE::ZRect::Height </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -979,9 +979,9 @@ Access private height member. <dl compact><dt><b>Returns:</b></dt><dd>Value of m
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZRect_8h-source.html">ZE_ZRect.h</a><li>/src/<a class="el" href="ZE__ZRect_8cpp.html">ZE_ZRect.cpp</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZSound Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a>, including all inherited members.<table>
|
||||
@ -11,7 +11,7 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a12">IsPaused</a>() const</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a11">IsPlaying</a>() const</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#p0">LoopInfinite</a></td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td><code> [static]</code></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a3">Open</a>(string filename)</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a3">Open</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a6">Pause</a>() const</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a5">Play</a>(int loopNum=0, int fadeTime=0)</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#n2">rChannelID</a></td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td><code> [protected]</code></td></tr>
|
||||
@ -23,11 +23,11 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a7">Unpause</a>() const</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a13">Volume</a>() const</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a0">ZSound</a>()</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a1">ZSound</a>(string filename)</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a1">ZSound</a>(std::string filename)</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZSound.html#a2">~ZSound</a>()</td><td><a class="el" href="classZE_1_1ZSound.html">ZE::ZSound</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZSound class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZSound Class Reference</h1><code>#include <<a class="el" href="ZE__ZSound_8h-source.html">ZE_ZSound.h</a>></code>
|
||||
@ -13,49 +13,49 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a0">ZSound</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Default Constructor.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a1">ZSound</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructor that opens a sound effect file.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Default Constructor.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a1">ZSound</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructor that opens a sound effect file.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a2">~ZSound</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Destructor, frees memory.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a3">Open</a> (string filename)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Opens a sound effect file.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Destructor, frees memory.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a3">Open</a> (std::string filename)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Opens a sound effect file.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a4">Release</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Release sound effect.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Release sound effect.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a5">Play</a> (int loopNum=0, int fadeTime=0)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Play currently loaded sound effect.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Play currently loaded sound effect.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a6">Pause</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pause sound.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pause sound.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a7">Unpause</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Unpause sound.</em> <a href="#a7"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Unpause sound.</em> <a href="#a7"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a8">Stop</a> (int fadeTime=0) const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Stop sound.</em> <a href="#a8"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Stop sound.</em> <a href="#a8"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a9">SetVolume</a> (int volume)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Change Volume.</em> <a href="#a9"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Change Volume.</em> <a href="#a9"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a10">IsLoaded</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if file is loaded.</em> <a href="#a10"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if file is loaded.</em> <a href="#a10"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a11">IsPlaying</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if sound is Playing.</em> <a href="#a11"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if sound is Playing.</em> <a href="#a11"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a12">IsPaused</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Check if sound is Paused.</em> <a href="#a12"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Check if sound is Paused.</em> <a href="#a12"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>int </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#a13">Volume</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Find Current Volume of Sound Channel.</em> <a href="#a13"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Find Current Volume of Sound Channel.</em> <a href="#a13"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Static Public Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="p0" doxytag="ZE::ZSound::LoopInfinite"></a>
|
||||
const int </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#p0">LoopInfinite</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Static Variable For Infinite loop of sound. (Defined as -1).</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Static Variable For Infinite loop of sound. (Defined as -1).</em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZSound::rEngine"></a>
|
||||
<a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> * </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#n0">rEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZSound::rSound"></a>
|
||||
Mix_Chunk * </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#n1">rSound</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to music data.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to music data.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZSound::rChannelID"></a>
|
||||
int </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#n2">rChannelID</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Channel ID Number from SDL_Mixer.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Channel ID Number from SDL_Mixer.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZSound::ZSound"></a><p>
|
||||
@ -66,8 +66,8 @@ int </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html#n2">r
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZSound::ZSound </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -94,9 +94,9 @@ Default Constructor, does nothing. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZSound::ZSound </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -128,8 +128,8 @@ Constructor simply calls <a class="el" href="classZE_1_1ZSound.html#a3">ZSound::
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> virtual ZE::ZSound::~ZSound </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -157,9 +157,9 @@ Destructor calls <a class="el" href="classZE_1_1ZSound.html#a4">ZSound::Release(
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Open </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="md" nowrap valign="top">std::string </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>filename</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -191,8 +191,8 @@ Open a music file to be used. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Release </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -220,13 +220,13 @@ Release memory held by sample data. </td>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Play </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname" nowrap> <em>loopNum</em> = 0, </td>
|
||||
<td class="mdname" nowrap> <em>loopNum</em> = 0, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>int </td>
|
||||
<td class="mdname" nowrap> <em>fadeTime</em> = 0</td>
|
||||
<td class="mdname" nowrap> <em>fadeTime</em> = 0</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -263,8 +263,8 @@ Play sound effect, looping loopNum times. (use <a class="el" href="classZE_1_1ZS
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Pause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -291,8 +291,8 @@ Pause currently playing sound. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Unpause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -320,8 +320,8 @@ Unpause currently playing sound. </td>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::Stop </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>fadeTime</em> = 0 </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>fadeTime</em> = 0 </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -354,8 +354,8 @@ Stop currently playing sound, if fadeTime is not zero, fade out over specified t
|
||||
<td class="md" nowrap valign="top"> void ZE::ZSound::SetVolume </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">int </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>volume</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>volume</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -387,8 +387,8 @@ Change volume of currently playing sample. <dl compact><dt><b>Parameters:</b></d
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZSound::IsLoaded </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -416,8 +416,8 @@ Check if file is loaded and pointer to data is non-NULL. <dl compact><dt><b>Retu
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZSound::IsPlaying </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -445,8 +445,8 @@ Check if sound is playing, specifically if it is not stopped. (Paused state shou
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZSound::IsPaused </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -474,8 +474,8 @@ Check if sound is "playing" but currently paused. <dl compact><dt><b>Returns:</b
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> int ZE::ZSound::Volume </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -497,9 +497,9 @@ Get current volume of sound channel represented as a value from 0-128. <dl compa
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following file:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZSound_8h-source.html">ZE_ZSound.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>Member List</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZTimer Member List</h1>This is the complete list of members for <a class="el" href="classZE_1_1ZTimer.html">ZE::ZTimer</a>, including all inherited members.<table>
|
||||
@ -20,9 +20,9 @@
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZTimer.html#a4">Unpause</a>()</td><td><a class="el" href="classZE_1_1ZTimer.html">ZE::ZTimer</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZTimer.html#a0">ZTimer</a>(bool useZEngine=true)</td><td><a class="el" href="classZE_1_1ZTimer.html">ZE::ZTimer</a></td><td></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td><a class="el" href="classZE_1_1ZTimer.html#a1">~ZTimer</a>()</td><td><a class="el" href="classZE_1_1ZTimer.html">ZE::ZTimer</a></td><td><code> [virtual]</code></td></tr>
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</table><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE::ZTimer class Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE::ZTimer Class Reference</h1><code>#include <<a class="el" href="ZE__ZTimer_8h-source.html">ZE_ZTimer.h</a>></code>
|
||||
@ -13,40 +13,40 @@
|
||||
<p>
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Methods</h2></td></tr>
|
||||
<tr><td colspan=2><br><h2>Public Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top> </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a0">ZTimer</a> (bool useZEngine=true)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Constructs a new Timer.</em> <a href="#a0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Constructs a new Timer.</em> <a href="#a0"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>virtual </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a1">~ZTimer</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Virtual Destructor.</em> <a href="#a1"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Virtual Destructor.</em> <a href="#a1"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a2">Reset</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Reset Timer.</em> <a href="#a2"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Reset Timer.</em> <a href="#a2"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a3">Pause</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pause Timer.</em> <a href="#a3"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pause Timer.</em> <a href="#a3"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a4">Unpause</a> ()</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Unpause Timer.</em> <a href="#a4"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Unpause Timer.</em> <a href="#a4"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>Uint32 </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a5">GetTime</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get Time of Timer.</em> <a href="#a5"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get Time of Timer.</em> <a href="#a5"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>bool </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#a6">IsPaused</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get paused state.</em> <a href="#a6"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Methods</h2></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get paused state.</em> <a href="#a6"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Member Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>Uint32 </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#b0">GetParentTime</a> () const</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Get time from parent timer.</em> <a href="#b0"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Get time from parent timer.</em> <a href="#b0"></a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Protected Attributes</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n0" doxytag="ZE::ZTimer::rEngine"></a>
|
||||
<a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> * </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n0">rEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Pointer to <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Object.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n1" doxytag="ZE::ZTimer::rPaused"></a>
|
||||
bool </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n1">rPaused</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Paused / Unpaused state of Timer.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Paused / Unpaused state of Timer.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n2" doxytag="ZE::ZTimer::rUseZEngine"></a>
|
||||
bool </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n2">rUseZEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Using <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> timer or SDL global timer.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Using <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> timer or SDL global timer.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n3" doxytag="ZE::ZTimer::rPausedTime"></a>
|
||||
Uint32 </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n3">rPausedTime</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Total time this timer has been paused.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Total time this timer has been paused.</em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top><a name="n4" doxytag="ZE::ZTimer::rLastPause"></a>
|
||||
Uint32 </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n4">rLastPause</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Time this Timer was paused.</em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Time this Timer was paused.</em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Constructor & Destructor Documentation</h2>
|
||||
<a name="a0" doxytag="ZE::ZTimer::ZTimer"></a><p>
|
||||
@ -58,8 +58,8 @@ Uint32 </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html#n4
|
||||
<td class="md" nowrap valign="top"> ZE::ZTimer::ZTimer </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">bool </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>useZEngine</em> = true </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>useZEngine</em> = true </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -91,8 +91,8 @@ Sets TimePaused to current <a class="el" href="classZE_1_1ZEngine.html">ZEngine<
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> ZE::ZTimer::~ZTimer </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap><code> [virtual]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -120,8 +120,8 @@ Virtual destructor making future inheritance safe. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> Uint32 ZE::ZTimer::GetParentTime </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const<code> [protected]</code></td>
|
||||
</tr>
|
||||
|
||||
@ -149,8 +149,8 @@ Protected method to get time from whichever timer is parent. <dl compact><dt><b>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZTimer::Reset </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -177,8 +177,8 @@ Set Timer back to Zero, will also unpause timer if it was paused. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZTimer::Pause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -205,8 +205,8 @@ Pause the timer if it is unpaused. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> void ZE::ZTimer::Unpause </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -233,8 +233,8 @@ Unpause the timer if it is paused. </td>
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> Uint32 ZE::ZTimer::GetTime </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -262,8 +262,8 @@ Get current time accounting for time paused. <dl compact><dt><b>Returns:</b></dt
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> bool ZE::ZTimer::IsPaused </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap> const</td>
|
||||
</tr>
|
||||
|
||||
@ -285,9 +285,9 @@ Find out paused state of timer. <dl compact><dt><b>Returns:</b></dt><dd>Paused s
|
||||
</table>
|
||||
<hr>The documentation for this class was generated from the following files:<ul>
|
||||
<li>/include/<a class="el" href="ZE__ZTimer_8h-source.html">ZE_ZTimer.h</a><li>/src/<a class="el" href="ZE__ZTimer_8cpp.html">ZE_ZTimer.cpp</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -16,6 +16,7 @@ TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; width:
|
||||
DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
|
||||
DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }
|
||||
BODY { background: white; color: black }
|
||||
EM.mdesc { font-size: smaller }
|
||||
TD.indexkey {
|
||||
background-color: #eeeeff;
|
||||
font-weight: bold;
|
||||
|
@ -3,11 +3,12 @@
|
||||
<title>File Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine File List</h1>Here is a list of all documented files with brief descriptions:<table>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__Defines_8h.html">ZE_Defines.h</a> <a href="ZE__Defines_8h-source.html">[code]</a></td><td class="indexvalue">Define file for ZEngine</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="VersionInfo_8h.html">VersionInfo.h</a> <a href="VersionInfo_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for <a class="el" href="classVersionInfo.html">VersionInfo</a> class</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__Defines_8h.html">ZE_Defines.h</a> <a href="ZE__Defines_8h-source.html">[code]</a></td><td class="indexvalue">Define file for ZEngine where all #define statements to control compilation options are placed</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__Includes_8h.html">ZE_Includes.h</a> <a href="ZE__Includes_8h-source.html">[code]</a></td><td class="indexvalue">Include file for SDL and C++ Includes that many ZEngine files need</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__Utility_8h.html">ZE_Utility.h</a> <a href="ZE__Utility_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZEngine Utilities</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZClient_8h.html">ZE_ZClient.h</a> <a href="ZE__ZClient_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZClient</td></tr>
|
||||
@ -17,14 +18,15 @@
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZFont_8h.html">ZE_ZFont.h</a> <a href="ZE__ZFont_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZFont</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZImage_8h.html">ZE_ZImage.h</a> <a href="ZE__ZImage_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZImage</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZMusic_8h.html">ZE_ZMusic.h</a> <a href="ZE__ZMusic_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZMusic</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZRandGen_8h.html">ZE_ZRandGen.h</a> <a href="ZE__ZRandGen_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZRandGen</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZRect_8h.html">ZE_ZRect.h</a> <a href="ZE__ZRect_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZRect</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZServer_8h.html">ZE_ZServer.h</a> <a href="ZE__ZServer_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZServer</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZSound_8h.html">ZE_ZSound.h</a> <a href="ZE__ZSound_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZSound</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZE__ZTimer_8h.html">ZE_ZTimer.h</a> <a href="ZE__ZTimer_8h-source.html">[code]</a></td><td class="indexvalue">Definition file for ZTimer</td></tr>
|
||||
<tr><td class="indexkey">/include/<a class="el" href="ZEngine_8h.html">ZEngine.h</a> <a href="ZEngine_8h-source.html">[code]</a></td><td class="indexvalue">Header file for ZEngine</td></tr>
|
||||
<tr><td class="indexkey">/include/external/<b>mt19937ar.h</b> <a href="mt19937ar_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey">/include/external/<b>physfsrwops.h</b> <a href="physfsrwops_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey">/include/external/<b>SDLGL_Util.h</b> <a href="SDLGL__Util_8h-source.html">[code]</a></td><td class="indexvalue"></td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="VersionInfo_8cpp.html">VersionInfo.cpp</a></td><td class="indexvalue">Implementation file for <a class="el" href="classVersionInfo.html">VersionInfo</a> class</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__Utility_8cpp.html">ZE_Utility.cpp</a></td><td class="indexvalue">Source file for ZEngine utility functions</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZClient_8cpp.html">ZE_ZClient.cpp</a></td><td class="indexvalue">Source file for ZClient</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZConfigFile_8cpp.html">ZE_ZConfigFile.cpp</a></td><td class="indexvalue">Source file for ZConfigFile</td></tr>
|
||||
@ -33,14 +35,15 @@
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZFont_8cpp.html">ZE_ZFont.cpp</a></td><td class="indexvalue">Source file for ZFont</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZImage_8cpp.html">ZE_ZImage.cpp</a></td><td class="indexvalue">Source file for ZImage</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZMusic_8cpp.html">ZE_ZMusic.cpp</a></td><td class="indexvalue">Source file for ZMusic</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZRandGen_8cpp.html">ZE_ZRandGen.cpp</a></td><td class="indexvalue">Source file for ZRandGen</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZRect_8cpp.html">ZE_ZRect.cpp</a></td><td class="indexvalue">Source file for ZRect</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZServer_8cpp.html">ZE_ZServer.cpp</a></td><td class="indexvalue">Source file for ZServer</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZSound_8cpp.html">ZE_ZSound.cpp</a></td><td class="indexvalue">Source file for ZSound</td></tr>
|
||||
<tr><td class="indexkey">/src/<a class="el" href="ZE__ZTimer_8cpp.html">ZE_ZTimer.cpp</a></td><td class="indexvalue">Source file for ZTimer</td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,17 +3,16 @@
|
||||
<title>Compound Member Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine Compound Members</h1><center>
|
||||
<a href="#index_a">a</a> | <a href="#index_b">b</a> | <a href="#index_c">c</a> | <a href="#index_d">d</a> | <a href="#index_e">e</a> | <a href="#index_f">f</a> | <a href="#index_g">g</a> | <a href="#index_h">h</a> | <a href="#index_i">i</a> | <a href="#index_k">k</a> | <a href="#index_l">l</a> | <a href="#index_m">m</a> | <a href="#index_o">o</a> | <a href="#index_p">p</a> | <a href="#index_q">q</a> | <a href="#index_r">r</a> | <a href="#index_s">s</a> | <a href="#index_t">t</a> | <a href="#index_u">u</a> | <a href="#index_v">v</a> | <a href="#index_w">w</a> | <a href="#index_x">x</a> | <a href="#index_y">y</a> | <a href="#index_z">z</a> | <a href="#index_~">~</a></center>
|
||||
<a href="#index_a">a</a> | <a href="#index_b">b</a> | <a href="#index_c">c</a> | <a href="#index_d">d</a> | <a href="#index_e">e</a> | <a href="#index_f">f</a> | <a href="#index_g">g</a> | <a href="#index_h">h</a> | <a href="#index_i">i</a> | <a href="#index_k">k</a> | <a href="#index_l">l</a> | <a href="#index_m">m</a> | <a href="#index_n">n</a> | <a href="#index_o">o</a> | <a href="#index_p">p</a> | <a href="#index_q">q</a> | <a href="#index_r">r</a> | <a href="#index_s">s</a> | <a href="#index_t">t</a> | <a href="#index_u">u</a> | <a href="#index_v">v</a> | <a href="#index_w">w</a> | <a href="#index_x">x</a> | <a href="#index_y">y</a> | <a href="#index_z">z</a> | <a href="#index_~">~</a></center>
|
||||
|
||||
<p>
|
||||
Here is a list of all documented class members with links to the class documentation for each member:<h3><a name="index_a">- a -</a>
|
||||
</h3><ul>
|
||||
<li>AddPhysFSDir()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a37">ZE::ZEngine</a><li>Alpha()
|
||||
<li>Alpha()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a27">ZE::ZImage</a><li>Attach()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a10">ZE::ZImage</a></ul>
|
||||
<h3><a name="index_b">- b -</a>
|
||||
@ -21,31 +20,24 @@ Here is a list of all documented class members with links to the class documenta
|
||||
<li>Bind()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a18">ZE::ZImage</a><li>Bottom()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a22">ZE::ZRect</a><li>BPP()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a54">ZE::ZEngine</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a55">ZE::ZEngine</a></ul>
|
||||
<h3><a name="index_c">- c -</a>
|
||||
</h3><ul>
|
||||
<li>CheckEvents()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a34">ZE::ZEngine</a><li>CheckSockets()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a5">ZE::ZServer</a><li>CleanString()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a34">ZE::ZEngine</a><li>CleanString()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b0">ZE::ZConfigFile</a><li>Clear()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a8">ZE::ZEngine</a><li>Clients()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a6">ZE::ZServer</a><li>Close()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a8">ZE::ZEngine</a><li>Close()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a13">ZE::ZConfigFile</a><li>CloseDisplay()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a3">ZE::ZEngine</a><li>CloseSocket()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#c0">ZE::ZServer</a><li>Code()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a3">ZE::ZError</a><li>Connect()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a2">ZE::ZClient</a><li>Connected()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a7">ZE::ZClient</a><li>Contains()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a3">ZE::ZEngine</a><li>Code()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a2">ZE::ZError</a><li>Contains()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a14">ZE::ZRect</a><li>Create()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a2">ZE::ZError</a><li>CreateDisplay()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a1">ZE::ZError</a><li>CreateDisplay()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a2">ZE::ZEngine</a><li>CreateStringTable()
|
||||
: <a class="el" href="classZE_1_1ZError.html#d0">ZE::ZError</a></ul>
|
||||
<h3><a name="index_d">- d -</a>
|
||||
</h3><ul>
|
||||
<li>Delay()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a10">ZE::ZEngine</a><li>DestroyStringTable()
|
||||
: <a class="el" href="classZE_1_1ZError.html#d1">ZE::ZError</a><li>Disconnect()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a3">ZE::ZClient</a><li>Display()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a10">ZE::ZEngine</a><li>Display()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a6">ZE::ZEngine</a><li>Draw()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a7">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a20">ZE::ZImage</a><li>DrawRotated()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a22">ZE::ZImage</a><li>DrawShadedText()
|
||||
@ -54,16 +46,18 @@ Here is a list of all documented class members with links to the class documenta
|
||||
<h3><a name="index_e">- e -</a>
|
||||
</h3><ul>
|
||||
<li>Exists()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b2">ZE::ZConfigFile</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b2">ZE::ZConfigFile</a><li>extra
|
||||
: <a class="el" href="classVersionInfo.html#m3">VersionInfo</a></ul>
|
||||
<h3><a name="index_f">- f -</a>
|
||||
</h3><ul>
|
||||
<li>Flip()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a15">ZE::ZImage</a><li>Flush()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a12">ZE::ZConfigFile</a><li>FlushErrors()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a42">ZE::ZEngine</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a40">ZE::ZEngine</a></ul>
|
||||
<h3><a name="index_g">- g -</a>
|
||||
</h3><ul>
|
||||
<li>GetBool()
|
||||
<li>genrand_int32()
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#b0">ZE::ZRandGen</a><li>GetBool()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a6">ZE::ZConfigFile</a><li>GetDesiredFramerate()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a17">ZE::ZEngine</a><li>GetFloat()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a4">ZE::ZConfigFile</a><li>GetFramerate()
|
||||
@ -71,28 +65,26 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a14">ZE::ZEngine</a><li>GetInstance()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#d0">ZE::ZEngine</a><li>GetInt()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a5">ZE::ZConfigFile</a><li>GetLastError()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a40">ZE::ZEngine</a><li>GetParentTime()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a38">ZE::ZEngine</a><li>GetParentTime()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#b0">ZE::ZTimer</a><li>GetString()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a7">ZE::ZConfigFile</a><li>GetTime()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a7">ZE::ZConfigFile</a>, <a class="el" href="classVersionInfo.html#a1">VersionInfo</a><li>GetTime()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a5">ZE::ZTimer</a>, <a class="el" href="classZE_1_1ZEngine.html#a11">ZE::ZEngine</a><li>GetVariable()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b4">ZE::ZConfigFile</a><li>GetVersion()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#d2">ZE::ZEngine</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b4">ZE::ZConfigFile</a></ul>
|
||||
<h3><a name="index_h">- h -</a>
|
||||
</h3><ul>
|
||||
<li>Height()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a24">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a26">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a15">ZE::ZFont</a>, <a class="el" href="classZE_1_1ZEngine.html#a53">ZE::ZEngine</a><li>HideCursor()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a24">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a26">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a15">ZE::ZFont</a>, <a class="el" href="classZE_1_1ZEngine.html#a54">ZE::ZEngine</a><li>HideCursor()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a27">ZE::ZEngine</a></ul>
|
||||
<h3><a name="index_i">- i -</a>
|
||||
</h3><ul>
|
||||
<li>ImagesNeedReload()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a23">ZE::ZEngine</a><li>Initialized()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a5">ZE::ZEngine</a><li>InitPhysFS()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a36">ZE::ZEngine</a><li>Intersection()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a5">ZE::ZEngine</a><li>Intersection()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a15">ZE::ZRect</a><li>Intersects()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a12">ZE::ZRect</a><li>IsActive()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a19">ZE::ZEngine</a><li>IsBold()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a12">ZE::ZFont</a><li>IsFullscreen()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a55">ZE::ZEngine</a><li>IsItalic()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a56">ZE::ZEngine</a><li>IsItalic()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a13">ZE::ZFont</a><li>IsLoaded()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a10">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a11">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#a23">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a11">ZE::ZFont</a><li>IsPaused()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a6">ZE::ZTimer</a>, <a class="el" href="classZE_1_1ZSound.html#a12">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a13">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZEngine.html#a18">ZE::ZEngine</a><li>IsPlaying()
|
||||
@ -109,25 +101,31 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a31">ZE::ZEngine</a><li>Left()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a19">ZE::ZRect</a><li>LineSkip()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a16">ZE::ZFont</a><li>LoadFont()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a51">ZE::ZEngine</a><li>LoadImage()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a48">ZE::ZEngine</a><li>LoadMusic()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a50">ZE::ZEngine</a><li>LoadSound()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a49">ZE::ZEngine</a><li>LogError()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a52">ZE::ZEngine</a><li>LoadImage()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a49">ZE::ZEngine</a><li>LoadMusic()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a51">ZE::ZEngine</a><li>LoadSound()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a50">ZE::ZEngine</a><li>LogError()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#c1">ZE::ZEngine</a><li>LogString()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a4">ZE::ZError</a><li>LoopInfinite
|
||||
: <a class="el" href="classZE_1_1ZSound.html#p0">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#p0">ZE::ZMusic</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZError.html#a3">ZE::ZError</a><li>LoopInfinite
|
||||
: <a class="el" href="classZE_1_1ZSound.html#p0">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#p0">ZE::ZMusic</a><li>LOWER_MASK
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#q4">ZE::ZRandGen</a></ul>
|
||||
<h3><a name="index_m">- m -</a>
|
||||
</h3><ul>
|
||||
<li>mActive
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o15">ZE::ZEngine</a><li>mBPP
|
||||
<li>M
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#q1">ZE::ZRandGen</a><li>mActive
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o15">ZE::ZEngine</a><li>major
|
||||
: <a class="el" href="classVersionInfo.html#m0">VersionInfo</a><li>MATRIX_A
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#q2">ZE::ZRandGen</a><li>mBPP
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o2">ZE::ZEngine</a><li>mCurError
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o23">ZE::ZEngine</a><li>mDesiredFramerate
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o8">ZE::ZEngine</a><li>mErrlog
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o25">ZE::ZEngine</a><li>mErrorQueue
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o22">ZE::ZEngine</a><li>mFullscreen
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o22">ZE::ZEngine</a><li>mEventFilter
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o26">ZE::ZEngine</a><li>mFullscreen
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o3">ZE::ZEngine</a><li>mHeight
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o1">ZE::ZEngine</a><li>mInitialized
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o4">ZE::ZEngine</a><li>mKeyIsPressed
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o4">ZE::ZEngine</a><li>minor
|
||||
: <a class="el" href="classVersionInfo.html#m1">VersionInfo</a><li>mKeyIsPressed
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o17">ZE::ZEngine</a><li>mKeyPress
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o18">ZE::ZEngine</a><li>mLastPause
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o10">ZE::ZEngine</a><li>mLastTime
|
||||
@ -145,20 +143,27 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a9">ZE::ZRect</a><li>mPaused
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o6">ZE::ZEngine</a><li>mPausedTime
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o11">ZE::ZEngine</a><li>mQuit
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o16">ZE::ZEngine</a><li>mRate
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o26">ZE::ZEngine</a><li>mScreen
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o16">ZE::ZEngine</a><li>mRandGen
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o27">ZE::ZEngine</a><li>mRate
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o28">ZE::ZEngine</a><li>mScreen
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o5">ZE::ZEngine</a><li>mSecPerFrame
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o13">ZE::ZEngine</a><li>mStereo
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o27">ZE::ZEngine</a><li>mUnpauseOnActive
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o29">ZE::ZEngine</a><li>mUnpauseOnActive
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o7">ZE::ZEngine</a><li>mWidth
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#o0">ZE::ZEngine</a></ul>
|
||||
<h3><a name="index_n">- n -</a>
|
||||
</h3><ul>
|
||||
<li>N
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#q0">ZE::ZRandGen</a></ul>
|
||||
<h3><a name="index_o">- o -</a>
|
||||
</h3><ul>
|
||||
<li>Open()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a3">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a3">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#a7">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a3">ZE::ZFont</a><li>OpenFromImage()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a9">ZE::ZImage</a><li>operator<()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a6">ZE::ZRect</a><li>operator=()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a4">ZE::ZRect</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a6">ZE::ZRect</a>, <a class="el" href="classVersionInfo.html#a2">VersionInfo</a><li>operator=()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a4">ZE::ZRect</a><li>operator==()
|
||||
: <a class="el" href="classVersionInfo.html#a3">VersionInfo</a><li>operator>()
|
||||
: <a class="el" href="classVersionInfo.html#a4">VersionInfo</a></ul>
|
||||
<h3><a name="index_p">- p -</a>
|
||||
</h3><ul>
|
||||
<li>Pause()
|
||||
@ -173,22 +178,21 @@ Here is a list of all documented class members with links to the class documenta
|
||||
<h3><a name="index_r">- r -</a>
|
||||
</h3><ul>
|
||||
<li>rAlpha
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n9">ZE::ZImage</a><li>RandDouble()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a47">ZE::ZEngine</a><li>RandLong()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a45">ZE::ZEngine</a><li>rBGColor
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n9">ZE::ZImage</a><li>Rand()
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#a8">ZE::ZRandGen</a>, <a class="el" href="classZE_1_1ZEngine.html#a47">ZE::ZEngine</a><li>RandDouble()
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#a9">ZE::ZRandGen</a>, <a class="el" href="classZE_1_1ZEngine.html#a48">ZE::ZEngine</a><li>rBGColor
|
||||
: <a class="el" href="classZE_1_1ZFont.html#n4">ZE::ZFont</a><li>RButtonPressed()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a32">ZE::ZEngine</a><li>rChannelID
|
||||
: <a class="el" href="classZE_1_1ZSound.html#n2">ZE::ZSound</a><li>rClientSockets
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o3">ZE::ZServer</a><li>rCode
|
||||
: <a class="el" href="classZE_1_1ZSound.html#n2">ZE::ZSound</a><li>rCode
|
||||
: <a class="el" href="classZE_1_1ZError.html#n0">ZE::ZError</a><li>rColor
|
||||
: <a class="el" href="classZE_1_1ZFont.html#n3">ZE::ZFont</a><li>rDescription
|
||||
: <a class="el" href="classZE_1_1ZError.html#n1">ZE::ZError</a><li>Receive()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a6">ZE::ZClient</a><li>Release()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a4">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a4">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#a12">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a4">ZE::ZFont</a><li>ReleaseInstance()
|
||||
: <a class="el" href="classZE_1_1ZError.html#n1">ZE::ZError</a><li>Release()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a4">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a4">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#a12">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a4">ZE::ZFont</a><li>release
|
||||
: <a class="el" href="classVersionInfo.html#m2">VersionInfo</a><li>ReleaseInstance()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#d1">ZE::ZEngine</a><li>Reload()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a11">ZE::ZImage</a><li>rEngine
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n0">ZE::ZTimer</a>, <a class="el" href="classZE_1_1ZSound.html#n0">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZServer.html#o0">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZMusic.html#n0">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#n0">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#n0">ZE::ZFont</a>, <a class="el" href="classZE_1_1ZClient.html#n0">ZE::ZClient</a><li>ReportError()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a39">ZE::ZEngine</a><li>RequestQuit()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n0">ZE::ZTimer</a>, <a class="el" href="classZE_1_1ZSound.html#n0">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#n0">ZE::ZMusic</a>, <a class="el" href="classZE_1_1ZImage.html#n0">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#n0">ZE::ZFont</a><li>ReportError()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a37">ZE::ZEngine</a><li>RequestQuit()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a20">ZE::ZEngine</a><li>Reset()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a2">ZE::ZTimer</a><li>Resize()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a10">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a17">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZFont.html#a10">ZE::ZFont</a><li>ResizeRel()
|
||||
@ -201,22 +205,19 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a20">ZE::ZRect</a><li>rImage
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n5">ZE::ZImage</a><li>rLastPause
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n4">ZE::ZTimer</a><li>rLine
|
||||
: <a class="el" href="classZE_1_1ZError.html#n3">ZE::ZError</a><li>rMaxClients
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o4">ZE::ZServer</a><li>rMusic
|
||||
: <a class="el" href="classZE_1_1ZError.html#n3">ZE::ZError</a><li>rMusic
|
||||
: <a class="el" href="classZE_1_1ZMusic.html#n1">ZE::ZMusic</a><li>rPaused
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n1">ZE::ZTimer</a><li>rPausedTime
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n3">ZE::ZTimer</a><li>rSocket
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o1">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#n1">ZE::ZClient</a><li>rSocketSet
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o2">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#n2">ZE::ZClient</a><li>rSound
|
||||
: <a class="el" href="classZE_1_1ZSound.html#n1">ZE::ZSound</a><li>rTexID
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n3">ZE::ZTimer</a><li>rSound
|
||||
: <a class="el" href="classZE_1_1ZSound.html#n1">ZE::ZSound</a><li>rStateVector
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#n0">ZE::ZRandGen</a><li>rStateVectorIndex
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#n1">ZE::ZRandGen</a><li>rTexID
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n6">ZE::ZImage</a><li>rTexMaxX
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n3">ZE::ZImage</a><li>rTexMaxY
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n4">ZE::ZImage</a><li>rTexMinX
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n1">ZE::ZImage</a><li>rTexMinY
|
||||
: <a class="el" href="classZE_1_1ZImage.html#n2">ZE::ZImage</a><li>rUseZEngine
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n2">ZE::ZTimer</a><li>rVerbose
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o5">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#n3">ZE::ZClient</a><li>rWaitTime
|
||||
: <a class="el" href="classZE_1_1ZServer.html#o6">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#n4">ZE::ZClient</a><li>rWidth
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#n2">ZE::ZTimer</a><li>rWidth
|
||||
: <a class="el" href="classZE_1_1ZRect.html#n2">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#n7">ZE::ZImage</a><li>rX
|
||||
: <a class="el" href="classZE_1_1ZRect.html#n0">ZE::ZRect</a><li>rY
|
||||
: <a class="el" href="classZE_1_1ZRect.html#n1">ZE::ZRect</a></ul>
|
||||
@ -224,9 +225,9 @@ Here is a list of all documented class members with links to the class documenta
|
||||
</h3><ul>
|
||||
<li>SDLrect()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a16">ZE::ZRect</a><li>section
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">ZE::ZConfigFile::ZCF_Section</a><li>SeedRandom()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a43">ZE::ZEngine</a><li>Send()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a5">ZE::ZClient</a><li>sErrorDesc
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m0">ZE::ZConfigFile::ZCF_Section</a><li>Seed()
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#a2">ZE::ZRandGen</a><li>SeedRandGen()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a41">ZE::ZEngine</a><li>sErrorDesc
|
||||
: <a class="el" href="classZE_1_1ZError.html#q0">ZE::ZError</a><li>SetAlpha()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a13">ZE::ZImage</a><li>SetBGColor()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a8">ZE::ZFont</a><li>SetBool()
|
||||
@ -234,7 +235,7 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a7">ZE::ZFont</a><li>SetColorKey()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a14">ZE::ZImage</a><li>SetDesiredFramerate()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a16">ZE::ZEngine</a><li>SetErrorLog()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a38">ZE::ZEngine</a><li>SetEventFilter()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a36">ZE::ZEngine</a><li>SetEventFilter()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a35">ZE::ZEngine</a><li>SetFloat()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a8">ZE::ZConfigFile</a><li>SetGL2D()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a9">ZE::ZEngine</a><li>SetInt()
|
||||
@ -246,12 +247,10 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a0">ZE::ZEngine</a><li>SetupSound()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a1">ZE::ZEngine</a><li>SetVariable()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#b3">ZE::ZConfigFile</a><li>SetVolume()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a9">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a10">ZE::ZMusic</a><li>SetWaitTime()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a4">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#a4">ZE::ZClient</a><li>ShowCursor()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a9">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a10">ZE::ZMusic</a><li>ShowCursor()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a28">ZE::ZEngine</a><li>sInstance
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#r0">ZE::ZEngine</a><li>Start()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a2">ZE::ZServer</a><li>Stop()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a8">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZServer.html#a3">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZMusic.html#a9">ZE::ZMusic</a><li>Stretch()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#r0">ZE::ZEngine</a><li>Stop()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a8">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a9">ZE::ZMusic</a><li>Stretch()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a16">ZE::ZImage</a><li>StringHeight()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a18">ZE::ZFont</a><li>StringWidth()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a17">ZE::ZFont</a><li>Surface()
|
||||
@ -266,20 +265,22 @@ Here is a list of all documented class members with links to the class documenta
|
||||
<li>Unpause()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a4">ZE::ZTimer</a>, <a class="el" href="classZE_1_1ZSound.html#a7">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a7">ZE::ZMusic</a><li>UnpauseTimer()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a13">ZE::ZEngine</a><li>Update()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a7">ZE::ZEngine</a></ul>
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a7">ZE::ZEngine</a><li>UPPER_MASK
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#q3">ZE::ZRandGen</a></ul>
|
||||
<h3><a name="index_v">- v -</a>
|
||||
</h3><ul>
|
||||
<li>val
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m1">ZE::ZConfigFile::ZCF_Variable</a><li>var
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#m0">ZE::ZConfigFile::ZCF_Variable</a><li>varList
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">ZE::ZConfigFile::ZCF_Section</a><li>Volume()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#m1">ZE::ZConfigFile::ZCF_Section</a><li>Version
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#p0">ZE::ZEngine</a><li>VersionInfo()
|
||||
: <a class="el" href="classVersionInfo.html#a0">VersionInfo</a><li>Volume()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a13">ZE::ZSound</a>, <a class="el" href="classZE_1_1ZMusic.html#a14">ZE::ZMusic</a></ul>
|
||||
<h3><a name="index_w">- w -</a>
|
||||
</h3><ul>
|
||||
<li>WaitTime()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a7">ZE::ZServer</a>, <a class="el" href="classZE_1_1ZClient.html#a8">ZE::ZClient</a><li>Width()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a23">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a25">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZEngine.html#a52">ZE::ZEngine</a><li>WriteLog()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a41">ZE::ZEngine</a></ul>
|
||||
<li>Width()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a23">ZE::ZRect</a>, <a class="el" href="classZE_1_1ZImage.html#a25">ZE::ZImage</a>, <a class="el" href="classZE_1_1ZEngine.html#a53">ZE::ZEngine</a><li>WriteLog()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#a39">ZE::ZEngine</a></ul>
|
||||
<h3><a name="index_x">- x -</a>
|
||||
</h3><ul>
|
||||
<li>X()
|
||||
@ -290,34 +291,30 @@ Here is a list of all documented class members with links to the class documenta
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a18">ZE::ZRect</a></ul>
|
||||
<h3><a name="index_z">- z -</a>
|
||||
</h3><ul>
|
||||
<li>ZClient()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a0">ZE::ZClient</a><li>ZConfigFile()
|
||||
<li>ZConfigFile()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a1">ZE::ZConfigFile</a><li>ZEngine()
|
||||
: <a class="el" href="classZE_1_1ZEngine.html#c0">ZE::ZEngine</a><li>ZError()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a0">ZE::ZError</a><li>ZFont()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a1">ZE::ZFont</a><li>ZImage()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a5">ZE::ZImage</a><li>ZMusic()
|
||||
: <a class="el" href="classZE_1_1ZMusic.html#a1">ZE::ZMusic</a><li>ZRect()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a3">ZE::ZRect</a><li>ZServer()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a0">ZE::ZServer</a><li>ZSound()
|
||||
: <a class="el" href="classZE_1_1ZMusic.html#a1">ZE::ZMusic</a><li>ZRandGen()
|
||||
: <a class="el" href="classZE_1_1ZRandGen.html#a1">ZE::ZRandGen</a><li>ZRect()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a3">ZE::ZRect</a><li>ZSound()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a1">ZE::ZSound</a><li>ZTimer()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a0">ZE::ZTimer</a></ul>
|
||||
<h3><a name="index_~">- ~ -</a>
|
||||
</h3><ul>
|
||||
<li>~ZClient()
|
||||
: <a class="el" href="classZE_1_1ZClient.html#a1">ZE::ZClient</a><li>~ZConfigFile()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a2">ZE::ZConfigFile</a><li>~ZError()
|
||||
: <a class="el" href="classZE_1_1ZError.html#a1">ZE::ZError</a><li>~ZFont()
|
||||
<li>~ZConfigFile()
|
||||
: <a class="el" href="classZE_1_1ZConfigFile.html#a2">ZE::ZConfigFile</a><li>~ZFont()
|
||||
: <a class="el" href="classZE_1_1ZFont.html#a2">ZE::ZFont</a><li>~ZImage()
|
||||
: <a class="el" href="classZE_1_1ZImage.html#a6">ZE::ZImage</a><li>~ZMusic()
|
||||
: <a class="el" href="classZE_1_1ZMusic.html#a2">ZE::ZMusic</a><li>~ZRect()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a5">ZE::ZRect</a><li>~ZServer()
|
||||
: <a class="el" href="classZE_1_1ZServer.html#a1">ZE::ZServer</a><li>~ZSound()
|
||||
: <a class="el" href="classZE_1_1ZRect.html#a5">ZE::ZRect</a><li>~ZSound()
|
||||
: <a class="el" href="classZE_1_1ZSound.html#a2">ZE::ZSound</a><li>~ZTimer()
|
||||
: <a class="el" href="classZE_1_1ZTimer.html#a1">ZE::ZTimer</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,36 +3,22 @@
|
||||
<title>File Member Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine File Members</h1><center>
|
||||
<a href="#index_m">m</a> | <a href="#index_u">u</a> | <a href="#index_v">v</a> | <a href="#index_z">z</a></center>
|
||||
<a href="#index_u">u</a></center>
|
||||
|
||||
<p>
|
||||
Here is a list of all documented file members with links to the documentation:<h3><a name="index_m">- m -</a>
|
||||
Here is a list of all documented file members with links to the documentation:<h3><a name="index_u">- u -</a>
|
||||
</h3><ul>
|
||||
<li>MAX_MSG_LEN
|
||||
: <a class="el" href="ZE__Defines_8h.html#a6">ZE_Defines.h</a></ul>
|
||||
<h3><a name="index_u">- u -</a>
|
||||
</h3><ul>
|
||||
<li>USE_PHYSFS
|
||||
: <a class="el" href="ZE__Defines_8h.html#a5">ZE_Defines.h</a><li>USE_SDL_IMAGE
|
||||
: <a class="el" href="ZE__Defines_8h.html#a2">ZE_Defines.h</a><li>USE_SDL_MIXER
|
||||
: <a class="el" href="ZE__Defines_8h.html#a3">ZE_Defines.h</a><li>USE_SDL_NET
|
||||
: <a class="el" href="ZE__Defines_8h.html#a4">ZE_Defines.h</a><li>USE_SDL_TTF
|
||||
: <a class="el" href="ZE__Defines_8h.html#a1">ZE_Defines.h</a></ul>
|
||||
<h3><a name="index_v">- v -</a>
|
||||
</h3><ul>
|
||||
<li>VERSION
|
||||
<li>USE_SDL_IMAGE
|
||||
: <a class="el" href="ZE__Defines_8h.html#a1">ZE_Defines.h</a><li>USE_SDL_MIXER
|
||||
: <a class="el" href="ZE__Defines_8h.html#a2">ZE_Defines.h</a><li>USE_SDL_TTF
|
||||
: <a class="el" href="ZE__Defines_8h.html#a0">ZE_Defines.h</a></ul>
|
||||
<h3><a name="index_z">- z -</a>
|
||||
</h3><ul>
|
||||
<li>ZByte
|
||||
: <a class="el" href="ZE__Defines_8h.html#a7">ZE_Defines.h</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZEngine Documentation</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine Documentation</h1>
|
||||
@ -22,23 +22,20 @@ About ZEngine</h2>
|
||||
-The ZEngine forums : <a href="http://www.conceptofzero.net/forums/index.php?act=SF&f=15">http://www.conceptofzero.net/forums/index.php?act=SF&f=15</a><h2><a name="Licensing"></a>
|
||||
Licensing</h2>
|
||||
<br>
|
||||
<pre> This file is Part of the ZEngine Library for 2D game development.
|
||||
Copyright (C) 2002, 2003 James Turk
|
||||
|
||||
Licensed under a BSD-style license.
|
||||
|
||||
The maintainer of this library is James Turk (<a href="mailto:james@conceptofzero.net">james@conceptofzero.net</a>)
|
||||
<pre><div> This file is Part of the ZEngine Library for 2D game development.
|
||||
Copyright (C) 2002, 2003 James Turk</pre></div><p>
|
||||
<pre><div> Licensed under a BSD-style license.</pre></div><p>
|
||||
<pre><div> The maintainer of this library is James Turk (<a href="mailto:james@conceptofzero.net">james@conceptofzero.net</a>)
|
||||
and the home of this Library is <a href="http://zengine.sourceforge.net">http://zengine.sourceforge.net</a>
|
||||
</pre>
|
||||
<h2><a name="Authors"></a>
|
||||
</pre></div> <h2><a name="Authors"></a>
|
||||
Contributing Authors</h2>
|
||||
<br>
|
||||
James Turk <a href="mailto:james@conceptofzero.net"><a href="mailto:james@conceptofzero.net">james@conceptofzero.net</a></a> - Core Engine, Design, Docs, and Classes<br>
|
||||
Gamer Tazar <a href="mailto:tazar@conceptofzero.net"><a href="mailto:tazar@conceptofzero.net">tazar@conceptofzero.net</a></a> - OpenGL assistance<br>
|
||||
Sean <a href="mailto:sean@conceptofzero.net"><a href="mailto:sean@conceptofzero.net">sean@conceptofzero.net</a></a> - MSVC++6 Project Files<br>
|
||||
Kevin Watters <a href="mailto:kwatters@adelphia.net"><a href="mailto:kwatters@adelphia.net">kwatters@adelphia.net</a></a> - Fix to ZImage::SetColorKey<br><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
James Turk <a href="mailto:james@conceptofzero.net">james@conceptofzero.net</a> - Core Engine, Design, Docs, and Classes<br>
|
||||
Gamer Tazar <a href="mailto:tazar@conceptofzero.net">tazar@conceptofzero.net</a> - OpenGL assistance<br>
|
||||
Sean <a href="mailto:sean@conceptofzero.net">sean@conceptofzero.net</a> - MSVC++6 Project Files<br>
|
||||
Kevin Watters <a href="mailto:kwatters@adelphia.net">kwatters@adelphia.net</a> - Fix to ZImage::SetColorKey<br><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>ZE Namespace Reference</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZE Namespace Reference</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
|
||||
@ -16,32 +16,30 @@ Namespace for <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> classes a
|
||||
<table border=0 cellpadding=0 cellspacing=0>
|
||||
<tr><td></td></tr>
|
||||
<tr><td colspan=2><br><h2>Compounds</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZClient.html">ZClient</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for a simplified TCP client.</em> <a href="classZE_1_1ZClient.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Class for use in <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a>.</em> <a href="classZE_1_1ZConfigFile.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZCF_Variable</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Variable class.</em> <a href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZCF_Section</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Section class.</em> <a href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Class for use in <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a>.</em> <a href="classZE_1_1ZConfigFile.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html">ZConfigFile::ZCF_Variable</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Variable class.</em> <a href="classZE_1_1ZConfigFile_1_1ZCF__Variable.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZConfigFile_1_1ZCF__Section.html">ZConfigFile::ZCF_Section</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZConfigFile.html">ZConfigFile</a> Section class.</em> <a href="classZE_1_1ZConfigFile_1_1ZCF__Section.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Main <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Singleton Class.</em> <a href="classZE_1_1ZEngine.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Main <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Singleton Class.</em> <a href="classZE_1_1ZEngine.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZError.html">ZError</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZError.html">ZError</a> class for describing errors.</em> <a href="classZE_1_1ZError.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZError.html">ZError</a> class for describing errors.</em> <a href="classZE_1_1ZError.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZFont.html">ZFont</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZFont.html">ZFont</a> class for basic Font use.</em> <a href="classZE_1_1ZFont.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZFont.html">ZFont</a> class for basic Font use.</em> <a href="classZE_1_1ZFont.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZImage.html">ZImage</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZImage.html">ZImage</a> class for basic Image use.</em> <a href="classZE_1_1ZImage.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZImage.html">ZImage</a> class for basic Image use.</em> <a href="classZE_1_1ZImage.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZMusic.html">ZMusic</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZMusic.html">ZMusic</a> class for playing full length music (eg. ogg or wav).</em> <a href="classZE_1_1ZMusic.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZMusic.html">ZMusic</a> class for playing full length music (eg. ogg or wav).</em> <a href="classZE_1_1ZMusic.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZRandGen.html">ZRandGen</a></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZRandGen.html">ZRandGen</a> class for OO encapsulation of superb random generator "Mersenne Twister.".</em> <a href="classZE_1_1ZRandGen.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZRect.html">ZRect</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for simplified rectangle use.</em> <a href="classZE_1_1ZRect.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZServer.html">ZServer</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for simplified TCP server.</em> <a href="classZE_1_1ZServer.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> class for simplified rectangle use.</em> <a href="classZE_1_1ZRect.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZSound.html">ZSound</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZSound.html">ZSound</a> class for playing sound effects. (WAV).</em> <a href="classZE_1_1ZSound.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZSound.html">ZSound</a> class for playing sound effects. (WAV).</em> <a href="classZE_1_1ZSound.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>class </td><td valign=bottom><a class="el" href="classZE_1_1ZTimer.html">ZTimer</a></td></tr>
|
||||
<tr><td> </td><td><font size=-1><em><a class="el" href="classZE_1_1ZTimer.html">ZTimer</a> class for Timer use.</em> <a href="classZE_1_1ZTimer.html#_details">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc"><a class="el" href="classZE_1_1ZTimer.html">ZTimer</a> class for Timer use.</em> <a href="classZE_1_1ZTimer.html#_details">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Enumerations</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>enum </td><td valign=bottom><a class="el" href="namespaceZE.html#a24">ZErrorCode</a> { <br>
|
||||
<a class="el" href="namespaceZE.html#a24a0">ZERR_NONE</a>,
|
||||
@ -69,18 +67,18 @@ Namespace for <a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> classes a
|
||||
<a class="el" href="namespaceZE.html#a24a18">ZERR_LAST</a>
|
||||
<br>
|
||||
}</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Enumeration of ZEngine error codes.</em> <a href="#a24">More...</a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Enumeration of ZEngine error codes.</em> <a href="#a24">More...</a><em></em><br><br></td></tr>
|
||||
<tr><td colspan=2><br><h2>Functions</h2></td></tr>
|
||||
<tr><td nowrap align=right valign=top>string </td><td valign=bottom><a class="el" href="namespaceZE.html#a19">FormatStr</a> (const char *fmtstr,...)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Parses a string and interprets variable arguments, similar to sprintf.</em> <a href="#a19"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>std::string </td><td valign=bottom><a class="el" href="namespaceZE.html#a19">FormatStr</a> (const char *fmtstr,...)</td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Parses a std::string and interprets variable arguments, similar to sprintf.</em> <a href="#a19"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="namespaceZE.html#a20">FreeImage</a> (SDL_Surface *&image)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Properly free SDL_Surface.</em> <a href="#a20"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Properly free SDL_Surface.</em> <a href="#a20"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="namespaceZE.html#a21">FreeSound</a> (Mix_Chunk *&chunk)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Properly free Mix_Chunk.</em> <a href="#a21"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Properly free Mix_Chunk.</em> <a href="#a21"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="namespaceZE.html#a22">FreeMusic</a> (Mix_Music *&music)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Properly free Mix_Music.</em> <a href="#a22"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Properly free Mix_Music.</em> <a href="#a22"></a><em></em><br><br></td></tr>
|
||||
<tr><td nowrap align=right valign=top>void </td><td valign=bottom><a class="el" href="namespaceZE.html#a23">FreeFont</a> (TTF_Font *&font)</td></tr>
|
||||
<tr><td> </td><td><font size=-1><em>Properly free TTF_Font.</em> <a href="#a23"></a><em></em></font><br><br></td></tr>
|
||||
<tr><td> </td><td><em class="mdesc">Properly free TTF_Font.</em> <a href="#a23"></a><em></em><br><br></td></tr>
|
||||
</table>
|
||||
<hr><h2>Enumeration Type Documentation</h2>
|
||||
<a name="a24" doxytag="ZE::ZErrorCode"></a><p>
|
||||
@ -135,11 +133,11 @@ Error trying to use a <a class="el" href="classZE_1_1ZMusic.html">ZMusic</a> wit
|
||||
<tr><td valign=top><em><a name="a24a14" doxytag="ZERR_NOFONT"></a><em>ZERR_NOFONT</em></em> </td><td>
|
||||
Error trying to use a <a class="el" href="classZE_1_1ZFont.html">ZFont</a> without properly loading a font. </td></tr>
|
||||
<tr><td valign=top><em><a name="a24a15" doxytag="ZERR_NOSOCKET"></a><em>ZERR_NOSOCKET</em></em> </td><td>
|
||||
Error trying to use a <a class="el" href="classZE_1_1ZClient.html">ZClient</a> without having an open socket. </td></tr>
|
||||
Error trying to use a ZClient without having an open socket. </td></tr>
|
||||
<tr><td valign=top><em><a name="a24a16" doxytag="ZERR_NET_CLIENT"></a><em>ZERR_NET_CLIENT</em></em> </td><td>
|
||||
Error using SDL_net in <a class="el" href="classZE_1_1ZClient.html">ZClient</a>. </td></tr>
|
||||
Error using SDL_net in ZClient. </td></tr>
|
||||
<tr><td valign=top><em><a name="a24a17" doxytag="ZERR_NET_SERVER"></a><em>ZERR_NET_SERVER</em></em> </td><td>
|
||||
Error using SDL_net in <a class="el" href="classZE_1_1ZClient.html">ZClient</a>. </td></tr>
|
||||
Error using SDL_net in ZClient. </td></tr>
|
||||
<tr><td valign=top><em><a name="a24a18" doxytag="ZERR_LAST"></a><em>ZERR_LAST</em></em> </td><td>
|
||||
Value used as range index, not a valid error code. </td></tr>
|
||||
</table>
|
||||
@ -154,16 +152,16 @@ Value used as range index, not a valid error code. </td></tr>
|
||||
<td class="md">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td class="md" nowrap valign="top"> string ZE::FormatStr </td>
|
||||
<td class="md" nowrap valign="top"> std::string ZE::FormatStr </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">const char * </td>
|
||||
<td class="mdname" nowrap> <em>fmtstr</em>, </td>
|
||||
<td class="mdname" nowrap> <em>fmtstr</em>, </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td></td>
|
||||
<td class="md" nowrap>... </td>
|
||||
<td class="mdname" nowrap> </td>
|
||||
<td class="mdname" nowrap></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
@ -185,11 +183,11 @@ Value used as range index, not a valid error code. </td></tr>
|
||||
<p>
|
||||
Takes identifiers out of fmtstr and parses them, replacing them with cooresponding values in the variable arguments list. For more detail view stdarg documentation. <dl compact><dt><b>Parameters:</b></dt><dd>
|
||||
<table border="0" cellspacing="2" cellpadding="0">
|
||||
<tr><td valign=top><em>fmtstr</em> </td><td>defines format of resulting string </td></tr>
|
||||
<tr><td valign=top><em>fmtstr</em> </td><td>defines format of resulting std::string </td></tr>
|
||||
<tr><td valign=top><em>...</em> </td><td>variable number of arguments after fmtstr </td></tr>
|
||||
</table>
|
||||
</dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>string of parsed and combined string </dd></dl>
|
||||
<dl compact><dt><b>Returns:</b></dt><dd>std::string of parsed and combined std::string </dd></dl>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -202,8 +200,8 @@ Takes identifiers out of fmtstr and parses them, replacing them with coorespond
|
||||
<td class="md" nowrap valign="top"> void ZE::FreeImage </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">SDL_Surface *& </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>image</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>image</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -236,8 +234,8 @@ Safely free an SDL_Surface* and set it to NULL. <dl compact><dt><b>Parameters:</
|
||||
<td class="md" nowrap valign="top"> void FreeSound </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Mix_Chunk *& </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>chunk</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>chunk</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -270,8 +268,8 @@ Safely free a Mix_Chunk* and set it to NULL. <dl compact><dt><b>Parameters:</b><
|
||||
<td class="md" nowrap valign="top"> void FreeMusic </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">Mix_Music *& </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>music</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>music</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -304,8 +302,8 @@ Safely free a Mix_Music* and set it to NULL. <dl compact><dt><b>Parameters:</b><
|
||||
<td class="md" nowrap valign="top"> void FreeFont </td>
|
||||
<td class="md" valign="top">( </td>
|
||||
<td class="md" nowrap valign="top">TTF_Font *& </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>font</em> </td>
|
||||
<td class="md" valign="top">) </td>
|
||||
<td class="mdname1" valign="top" nowrap> <em>font</em> </td>
|
||||
<td class="md" valign="top"> ) </td>
|
||||
<td class="md" nowrap></td>
|
||||
</tr>
|
||||
|
||||
@ -329,9 +327,9 @@ Safely free a TTF_Font* and set it to NULL. <dl compact><dt><b>Parameters:</b></
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>Namespace Member Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine Namespace Members</h1><center>
|
||||
@ -41,9 +41,9 @@ Here is a list of all documented namespace members with links to the namespaces
|
||||
: <a class="el" href="namespaceZE.html#a24a4">ZE</a><li>ZERR_VIDMODE
|
||||
: <a class="el" href="namespaceZE.html#a24a6">ZE</a><li>ZErrorCode
|
||||
: <a class="el" href="namespaceZE.html#a24">ZE</a></ul>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,15 +3,15 @@
|
||||
<title>Namespace Index</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>ZEngine Namespace List</h1>Here is a list of all documented namespaces with brief descriptions:<table>
|
||||
<tr><td class="indexkey"><a class="el" href="namespaceZE.html">ZE</a></td><td class="indexvalue"><a class="el" href="classZE_1_1ZEngine.html">ZEngine</a> Namespace</td></tr>
|
||||
</table>
|
||||
<hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
<hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:51 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<title>/include/external/physfsrwops.h Source File</title>
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css">
|
||||
</head><body>
|
||||
<!-- Generated by Doxygen 1.3-rc2 -->
|
||||
<!-- Generated by Doxygen 1.3 -->
|
||||
<center>
|
||||
<a class="qindex" href="index.html">Main Page</a> <a class="qindex" href="namespaces.html">Namespace List</a> <a class="qindex" href="annotated.html">Compound List</a> <a class="qindex" href="files.html">File List</a> <a class="qindex" href="namespacemembers.html">Namespace Members</a> <a class="qindex" href="functions.html">Compound Members</a> <a class="qindex" href="globals.html">File Members</a> </center>
|
||||
<hr><h1>/include/external/physfsrwops.h</h1><div class="fragment"><pre>00001 <span class="comment">/*</span>
|
||||
@ -46,9 +46,9 @@
|
||||
00078
|
||||
00079 <span class="comment">/* end of physfsrwops.h ... */</span>
|
||||
00080
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Apr 27 22:34:35 2003 for ZEngine by
|
||||
</pre></div><hr><address style="align: right;"><small>Generated on Sun Jun 29 14:13:50 2003 for ZEngine by
|
||||
<a href="http://www.doxygen.org/index.html">
|
||||
<img src="doxygen.png" alt="doxygen" align="middle" border=0
|
||||
width=110 height=53></a>1.3-rc2 </small></address>
|
||||
width=110 height=53></a>1.3 </small></address>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -42,13 +42,11 @@
|
||||
#include "physfs.h"
|
||||
#include "external/physfsrwops.h"
|
||||
#endif
|
||||
#include "external/mt19937ar.h"
|
||||
|
||||
#include <string> //used frequently
|
||||
#include <queue> //used by ZEngine for ZErrors
|
||||
#include <list> //used by ZConfigFile
|
||||
#include <fstream> //used by ZConfigFile
|
||||
#include <cctype> //used in parsing
|
||||
#include <ctime> //used to seed the random generator
|
||||
|
||||
#endif //__ze_includes_h__
|
||||
|
@ -13,7 +13,7 @@
|
||||
\brief Definition file for core ZEngine class.
|
||||
|
||||
ZEngine Game Engine core Engine definition.
|
||||
<br>$Id: ZE_ZEngine.h,v 1.41 2003/06/11 05:51:32 cozman Exp $<br>
|
||||
<br>$Id: ZE_ZEngine.h,v 1.42 2003/07/05 00:40:45 cozman Exp $<br>
|
||||
\author James Turk
|
||||
**/
|
||||
|
||||
@ -26,6 +26,7 @@
|
||||
#include "ZE_Utility.h"
|
||||
#include "ZE_Includes.h"
|
||||
#include "ZE_ZError.h"
|
||||
#include "ZE_ZRandGen.h"
|
||||
#include "VersionInfo.h"
|
||||
|
||||
/*!
|
||||
@ -105,6 +106,8 @@ class ZEngine
|
||||
std::FILE *mErrlog;
|
||||
//! Event filter, for users who need to process their own events.
|
||||
SDL_EventFilter mEventFilter;
|
||||
//! Random Generator for general use.
|
||||
ZRandGen mRandGen;
|
||||
|
||||
#ifdef USE_SDL_MIXER
|
||||
//! Sound Bitrate
|
||||
@ -570,54 +573,77 @@ class ZEngine
|
||||
/*!
|
||||
\brief Seed random number generator.
|
||||
|
||||
Reseed Mersenne Twister (MT19937) random number generator. NOTE: Generator is initialized upon creation of ZEngine using time.
|
||||
(Faster and more random than rand(), see src/external/mt19937ar.c)
|
||||
\since 0.8.3
|
||||
Reseed Mersenne Twister random number generator. NOTE: Generator is initialized upon creation of object using time.
|
||||
\param seed Seed for random sequence.
|
||||
**/
|
||||
void SeedRandom(unsigned long seed);
|
||||
void SeedRandGen(unsigned long seed);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [0,max).
|
||||
|
||||
Obtain random int l where 0 <= l < max.
|
||||
\param max Limit for random number.
|
||||
\return Random unsigned int.
|
||||
**/
|
||||
unsigned int Rand(unsigned int max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [0,max).
|
||||
|
||||
Obtain random long l where 0 <= l < max.
|
||||
\since 0.8.3
|
||||
\param max Limit for random number.
|
||||
\return Random unsigned long.
|
||||
**/
|
||||
unsigned long RandLong(unsigned long max);
|
||||
unsigned long Rand(unsigned long max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [min,max].
|
||||
|
||||
Obtain random int l where min <= l <= max.
|
||||
\param min Lower limit for random number.
|
||||
\param max Upper limit for random number.
|
||||
\return Random int.
|
||||
**/
|
||||
int Rand(int min, int max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [min,max].
|
||||
|
||||
Obtain random long l where min <= l <= max.
|
||||
\since 0.8.3
|
||||
\param min Lower limit for random number.
|
||||
\param max Upper limit for random number.
|
||||
\return Random long.
|
||||
**/
|
||||
long RandLong(long min, long max);
|
||||
long Rand(long min, long max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [min,max].
|
||||
|
||||
Obtain random float l where min <= l <= max.
|
||||
\param min Lower limit for random number.
|
||||
\param max Upper limit for random number.
|
||||
\return Random float.
|
||||
**/
|
||||
float Rand(float min, float max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random integer [min,max].
|
||||
|
||||
Obtain random double l where min <= l <= max.
|
||||
\param min Lower limit for random number.
|
||||
\param max Upper limit for random number.
|
||||
\return Random double.
|
||||
**/
|
||||
double Rand(double min, double max);
|
||||
|
||||
/*!
|
||||
\brief Obtain random double [0,1).
|
||||
|
||||
Obtain random double d where 0 <= d < 1.
|
||||
\since 0.8.3
|
||||
\return Random double [0,1).
|
||||
**/
|
||||
double RandDouble();
|
||||
|
||||
/*!
|
||||
\brief Obtain random double [min,max].
|
||||
|
||||
Obtain random double d where min <= d <= max.
|
||||
\since 0.8.3
|
||||
\param min Lower limit for random number.
|
||||
\param max Upper limit for random number.
|
||||
\return Random double [min,max].
|
||||
**/
|
||||
double RandDouble(double min, double max);
|
||||
|
||||
////////////////////////////
|
||||
//Data Loading + Unloading//
|
||||
////////////////////////////
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
Definition file for ZError, the Error logging class for ZEngine.
|
||||
This class should never be used by the average user, it is used by ZEngine to store information on an error.
|
||||
<br>$Id: ZE_ZError.h,v 1.12 2003/06/11 05:51:32 cozman Exp $<br>
|
||||
<br>$Id: ZE_ZError.h,v 1.13 2003/07/05 00:40:45 cozman Exp $<br>
|
||||
\author James Turk
|
||||
**/
|
||||
|
||||
@ -66,7 +66,7 @@ class ZError
|
||||
{
|
||||
protected:
|
||||
//! Static Array of Error Identifiers
|
||||
static std::string *sErrorDesc;
|
||||
static std::string sErrorDesc[ZERR_LAST];
|
||||
//! Error ID.
|
||||
ZErrorCode rCode;
|
||||
//! Error Description.
|
||||
@ -78,19 +78,12 @@ class ZError
|
||||
|
||||
public:
|
||||
/*!
|
||||
\brief Construct std::string table for error strings.
|
||||
\brief Construct string table for error strings.
|
||||
|
||||
Constructs a std::string table for errors, enabling ZEngine to properly delete the table on exit.
|
||||
Constructs a string table for errors, enabling ZEngine to properly delete the table on exit.
|
||||
**/
|
||||
static void CreateStringTable();
|
||||
|
||||
/*!
|
||||
\brief Destroy std::string table of error strings.
|
||||
|
||||
Properly delete the std::string table, freeing all memory used by the strings.
|
||||
**/
|
||||
static void DestroyStringTable();
|
||||
|
||||
/*!
|
||||
\brief Default constructor for ZError.
|
||||
|
||||
@ -126,9 +119,9 @@ class ZError
|
||||
ZErrorCode Code() const;
|
||||
|
||||
/*!
|
||||
\brief Get formatted std::string for log file.
|
||||
\brief Get formatted string for log file.
|
||||
|
||||
Return the std::string to be written to the logfile. Called by ZEngine in LogError.
|
||||
Return the string to be written to the logfile. Called by ZEngine in LogError.
|
||||
**/
|
||||
std::string LogString() const;
|
||||
};
|
||||
|
@ -13,7 +13,7 @@
|
||||
\brief Central source file for ZEngine.
|
||||
|
||||
Actual implementation of ZEngine singleton class, the core of ZEngine.
|
||||
<br>$Id: ZE_ZEngine.cpp,v 1.47 2003/06/16 07:45:03 cozman Exp $<br>
|
||||
<br>$Id: ZE_ZEngine.cpp,v 1.48 2003/07/05 00:40:45 cozman Exp $<br>
|
||||
\author James Turk
|
||||
**/
|
||||
|
||||
@ -42,8 +42,6 @@ ZEngine::ZEngine() :
|
||||
mKeyPress[k] = false;
|
||||
|
||||
ZError::CreateStringTable();
|
||||
|
||||
SeedRandom(static_cast<unsigned long>(std::time(NULL)));
|
||||
}
|
||||
|
||||
ZEngine* ZEngine::GetInstance()
|
||||
@ -58,7 +56,6 @@ void ZEngine::ReleaseInstance()
|
||||
{
|
||||
if(sInstance)
|
||||
{
|
||||
ZError::DestroyStringTable(); //part of fix to memory leak with static members
|
||||
sInstance->CloseDisplay();
|
||||
delete sInstance;
|
||||
}
|
||||
@ -626,29 +623,44 @@ void ZEngine::FlushErrors()
|
||||
}
|
||||
}
|
||||
|
||||
void ZEngine::SeedRandom(unsigned long seed)
|
||||
void ZEngine::SeedRandGen(unsigned long seed)
|
||||
{
|
||||
init_genrand(seed);
|
||||
mRandGen.Seed(seed);
|
||||
}
|
||||
|
||||
unsigned long ZEngine::RandLong(unsigned long max)
|
||||
unsigned int ZEngine::Rand(unsigned int max)
|
||||
{
|
||||
return genrand_int32()%max;
|
||||
return mRandGen.Rand(max);
|
||||
}
|
||||
|
||||
long ZEngine::RandLong(long min, long max)
|
||||
unsigned long ZEngine::Rand(unsigned long max)
|
||||
{
|
||||
return min + genrand_int32()%(max-min+1);
|
||||
return mRandGen.Rand(max);
|
||||
}
|
||||
|
||||
int ZEngine::Rand(int min, int max)
|
||||
{
|
||||
return mRandGen.Rand(min,max);
|
||||
}
|
||||
|
||||
long ZEngine::Rand(long min, long max)
|
||||
{
|
||||
return mRandGen.Rand(min,max);
|
||||
}
|
||||
|
||||
float ZEngine::Rand(float min, float max)
|
||||
{
|
||||
return mRandGen.Rand(min,max);
|
||||
}
|
||||
|
||||
double ZEngine::Rand(double min, double max)
|
||||
{
|
||||
return mRandGen.Rand(min,max);
|
||||
}
|
||||
|
||||
double ZEngine::RandDouble()
|
||||
{
|
||||
return genrand_real2();
|
||||
}
|
||||
|
||||
double ZEngine::RandDouble(double min, double max)
|
||||
{
|
||||
return min + (genrand_real1()*(max-min));
|
||||
return mRandGen.RandDouble();
|
||||
}
|
||||
|
||||
SDL_Surface* ZEngine::LoadImage(std::string filename)
|
||||
|
@ -13,7 +13,7 @@
|
||||
\brief Source file for ZError.
|
||||
|
||||
Implementation of ZError, the ZEngine internal error information storage class.
|
||||
<br>$Id: ZE_ZError.cpp,v 1.10 2003/06/11 05:51:16 cozman Exp $<br>
|
||||
<br>$Id: ZE_ZError.cpp,v 1.11 2003/07/05 00:40:45 cozman Exp $<br>
|
||||
\author James Turk
|
||||
**/
|
||||
|
||||
@ -22,14 +22,11 @@
|
||||
namespace ZE
|
||||
{
|
||||
|
||||
std::string *ZError::sErrorDesc = NULL;
|
||||
std::string ZError::sErrorDesc[ZERR_LAST];
|
||||
|
||||
void ZError::CreateStringTable()
|
||||
{
|
||||
if(!sErrorDesc)
|
||||
{
|
||||
//create error strings
|
||||
sErrorDesc = new std::string[ZERR_LAST];
|
||||
sErrorDesc[ZERR_NONE] = "No Error. [%s]";
|
||||
sErrorDesc[ZERR_SDL_INTERNAL] = "SDL Error. [%s]";
|
||||
sErrorDesc[ZERR_SDL_INIT] = "Error Initializing SDL: %s";
|
||||
@ -49,16 +46,6 @@ void ZError::CreateStringTable()
|
||||
sErrorDesc[ZERR_NET_CLIENT] = "ZClient encountered a problem: %s";
|
||||
sErrorDesc[ZERR_NET_SERVER] = "ZServer encountered a problem: %s";
|
||||
}
|
||||
}
|
||||
|
||||
void ZError::DestroyStringTable()
|
||||
{
|
||||
if(sErrorDesc)
|
||||
{
|
||||
delete []sErrorDesc;
|
||||
sErrorDesc = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
ZError::ZError(ZErrorCode code, std::string desc, std::string file, int line) :
|
||||
rCode(code), rDescription(desc), rFilename(file), rLine(line)
|
||||
|
@ -13,7 +13,7 @@
|
||||
\brief Source file for ZImage.
|
||||
|
||||
Implementation of ZImage, the Image class for ZEngine.
|
||||
<br>$Id: ZE_ZImage.cpp,v 1.35 2003/06/11 05:51:16 cozman Exp $<br>
|
||||
<br>$Id: ZE_ZImage.cpp,v 1.36 2003/07/05 00:40:45 cozman Exp $<br>
|
||||
\author James Turk
|
||||
**/
|
||||
|
||||
@ -140,7 +140,7 @@ void ZImage::Attach(SDL_Surface *surface)
|
||||
{
|
||||
rWidth = surface->w;
|
||||
rHeight = surface->h;
|
||||
rTexID = SDL_GL_LoadTexture(surface,coord); //major helper, not written by me, found on libsdl.org
|
||||
rTexID = SDL_GL_LoadTexture(surface,coord); //major helper, not written by me, from libsdl.org
|
||||
rTexMinX = coord[0];
|
||||
rTexMinY = coord[1];
|
||||
rTexMaxX = coord[2];
|
||||
@ -233,7 +233,16 @@ void ZImage::Bind() const
|
||||
|
||||
void ZImage::Draw(int x, int y) const
|
||||
{
|
||||
Draw(static_cast<float>(x),static_cast<float>(y));
|
||||
//source is same as float version, but uses glVertex2i
|
||||
glColor4ub(255,255,255,rAlpha);
|
||||
Bind();
|
||||
glBegin(GL_TRIANGLE_STRIP);
|
||||
glTexCoord2f(rTexMinX,rTexMinY); glVertex2i(x,y);
|
||||
glTexCoord2f(rTexMaxX,rTexMinY); glVertex2i(x+rWidth,y);
|
||||
glTexCoord2f(rTexMinX,rTexMaxY); glVertex2i(x,y+rHeight);
|
||||
glTexCoord2f(rTexMaxX,rTexMaxY); glVertex2i(x+rWidth,y+rHeight);
|
||||
glEnd();
|
||||
glColor4ub(255,255,255,255);
|
||||
}
|
||||
|
||||
void ZImage::Draw(float x, float y) const
|
||||
|
@ -8,7 +8,7 @@
|
||||
and the home of this Library is http://www.zengine.sourceforge.net
|
||||
*******************************************************************************/
|
||||
|
||||
/*$Id: ZMouseTest.cpp,v 1.13 2003/06/11 05:51:47 cozman Exp $*/
|
||||
/*$Id: ZMouseTest.cpp,v 1.14 2003/07/05 00:40:45 cozman Exp $*/
|
||||
|
||||
#include <ZEngine.h>
|
||||
#include <string>
|
||||
@ -78,7 +78,7 @@ void Test()
|
||||
//draw the images//
|
||||
text[engine->MouseInRect(&textRect)].Draw(100,100);
|
||||
text[2].Draw(0,0);
|
||||
cursor.Draw(engine->MouseX()-8.0f,engine->MouseY()-8.0f);
|
||||
cursor.Draw(engine->MouseX()-8,engine->MouseY()-8);
|
||||
|
||||
engine->Update(); //update the screen
|
||||
}
|
||||
|
@ -84,6 +84,9 @@
|
||||
<File
|
||||
RelativePath="..\src\ZE_ZMusic.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\ZE_ZRandGen.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\ZE_ZRect.cpp">
|
||||
<FileConfiguration
|
||||
@ -102,9 +105,6 @@
|
||||
<File
|
||||
RelativePath="..\src\ZE_ZTimer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\external\mt19937ar.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\external\physfsrwops.cpp">
|
||||
</File>
|
||||
@ -148,6 +148,9 @@
|
||||
<File
|
||||
RelativePath="..\include\ZE_ZMusic.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\include\ZE_ZRandGen.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\include\ZE_ZRect.h">
|
||||
</File>
|
||||
@ -163,9 +166,6 @@
|
||||
<File
|
||||
RelativePath="..\include\ZEngine.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\include\external\mt19937ar.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\include\external\physfsrwops.h">
|
||||
</File>
|
||||
|
Loading…
Reference in New Issue
Block a user