diff --git a/changelog.txt b/changelog.txt
index 7574a29..f1941c6 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,11 +1,12 @@
-ZEngine Version Log for Version 0.7.4
-$Id: changelog.txt,v 1.1 2002/11/21 05:40:49 cozman Exp $
+ZEngine Version Log for Version 0.7.5
+$Id: changelog.txt,v 1.2 2002/11/28 23:15:52 cozman Exp $
0.7.5
-Converted all tabs to spaces.
-Added CVS lines to files for date tracking.
-Fixed file layout for CVS and reuploaded files to CVS.
-
+ -Major API changes (removed "Get" before accessors and changed some functions in ZEngine)
+ -Added Beginnings of OpenGL Render targets
0.7.4
-Modified behavior of ZImage::Attach and changed ZImageTest to use it.
diff --git a/doc/ZEngine.linux.doxygen b/doc/ZEngine.linux.doxygen
index 2edc9c2..8d892ca 100644
--- a/doc/ZEngine.linux.doxygen
+++ b/doc/ZEngine.linux.doxygen
@@ -4,7 +4,7 @@
# General configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = ZEngine
-PROJECT_NUMBER = 0.7.0
+PROJECT_NUMBER = 0.7.5
OUTPUT_DIRECTORY = /home/James/ZEngine-dev/doc
OUTPUT_LANGUAGE = English
EXTRACT_ALL = NO
@@ -19,6 +19,7 @@ REPEAT_BRIEF = NO
ALWAYS_DETAILED_SEC = NO
INLINE_INHERITED_MEMB = NO
FULL_PATH_NAMES = YES
+STRIP_FROM_PATH =
INTERNAL_DOCS = NO
STRIP_CODE_COMMENTS = YES
CASE_SENSE_NAMES = YES
@@ -174,6 +175,7 @@ INCLUDE_GRAPH = NO
INCLUDED_BY_GRAPH = NO
GRAPHICAL_HIERARCHY = NO
DOT_IMAGE_FORMAT = png
+DOT_PATH =
DOTFILE_DIRS =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
diff --git a/doc/ZEngine.win32.doxygen b/doc/ZEngine.win32.doxygen
index 7ca7843..305a050 100644
--- a/doc/ZEngine.win32.doxygen
+++ b/doc/ZEngine.win32.doxygen
@@ -4,7 +4,7 @@
# General configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = ZEngine
-PROJECT_NUMBER = 0.7.0
+PROJECT_NUMBER = 0.7.5
OUTPUT_DIRECTORY = F:\libs\ZEngine-dev\doc\
OUTPUT_LANGUAGE = English
EXTRACT_ALL = NO
diff --git a/include/ZE_Defines.h b/include/ZE_Defines.h
index f37edc3..debc563 100644
--- a/include/ZE_Defines.h
+++ b/include/ZE_Defines.h
@@ -13,7 +13,7 @@
File: ZE_Defines.h
Description: Defines header file for ZEngine class, where all #define statements to control compilation options are placed.
Author(s): James Turk
-$Id: ZE_Defines.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
+$Id: ZE_Defines.h,v 1.2 2002/11/28 23:18:54 cozman Exp $
\file ZE_Defines.h
\brief Define file for ZEngine.
@@ -33,6 +33,8 @@ $Id: ZE_Defines.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
#define USE_SDL_MIXER
//! Define to use the Physfs file system.
//#define USE_PHYSFS
+//! Define to use OpenGL for 2D blits.
+#define USE_OPENGL_2D
//! Undefine to disable debug streams for Error Handler.
#define DEBUG_STREAM
//! Version number.
diff --git a/include/ZE_Includes.h b/include/ZE_Includes.h
index 3281760..5363868 100644
--- a/include/ZE_Includes.h
+++ b/include/ZE_Includes.h
@@ -13,7 +13,7 @@
File: ZE_Includes.h
Description: Header file for ZEngine universal includes.
Author(s): James Turk
-$Id: ZE_Includes.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
+$Id: ZE_Includes.h,v 1.2 2002/11/28 23:18:54 cozman Exp $
\file ZE_Includes.h
\brief Include file for SDL and C++ Includes that many ZEngine files need.
@@ -28,6 +28,9 @@ $Id: ZE_Includes.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
#include "ZE_Defines.h"
#include "SDL.h"
+#ifdef USE_OPENGL_2D
+#include "SDL_opengl.h"
+#endif
#ifdef USE_SDL_IMAGE
#include "SDL_image.h"
#endif
diff --git a/include/ZE_ZEngine.h b/include/ZE_ZEngine.h
index 7885d89..754d8d2 100644
--- a/include/ZE_ZEngine.h
+++ b/include/ZE_ZEngine.h
@@ -13,7 +13,7 @@
File: ZE_ZEngine.h
Description: Header file for ZEngine class, the core of the ZEngine.
Author(s): James Turk
-$Id: ZE_ZEngine.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
+$Id: ZE_ZEngine.h,v 1.2 2002/11/28 23:18:54 cozman Exp $
\file ZE_ZEngine.h
\brief Definition file for core ZEngine class.
@@ -135,7 +135,7 @@ class ZEngine
#endif
/*!
- \brief Create Window with predefined settings.
+ \brief Create Display with predefined settings.
SetupDisplay and SetupSound should be called prior to this to change settings, settings from those do not go into effect
until this function is called. Specify no icon file to use default OS icon.
@@ -143,14 +143,14 @@ class ZEngine
\param title Window Title.
\param icon Path to Icon File.
**/
- void CreateWindow(string title, string icon="");
+ void CreateDisplay(string title, string icon="");
/*!
\brief Quit SDL and any Subsystems.
Shut down SDL (and SDL_ttf,SDL_mixer if necessary).
**/
- void CloseWindow();
+ void CloseDisplay();
/////////////////
//Screen Access//
@@ -167,7 +167,7 @@ class ZEngine
Get pointer to screen SDL_Surface, allowing direct screen manipulation using SDL.
\return Pointer to Display Surface.
**/
- SDL_Surface *GetDisplay();
+ SDL_Surface *Display();
/*!
\brief Update screen contents.
@@ -223,7 +223,7 @@ class ZEngine
Freeze everything for given number of milliseconds.
\param milliseconds Number of milliseconds to freeze.
**/
- void Sleep(Uint32 milliseconds);
+ void Delay(Uint32 milliseconds);
/*!
\brief Get Global ZEngine time.
@@ -310,7 +310,7 @@ class ZEngine
/*!
\brief Find the state of a key.
- Function returns true/false based on if key is pressed or not.
+ Function returns true/false based on if key is currently pressed or not.
\param key code of key to find status of.
\return bool state of requested key.
**/
@@ -336,7 +336,7 @@ class ZEngine
Find X Position of Mouse on screen.
\return X Position of Mouse.
**/
- int GetMouseX();
+ int MouseX();
/*!
\brief Get Y Position of Mouse.
@@ -344,7 +344,7 @@ class ZEngine
Find Y Position of Mouse on screen.
\return Y Position of Mouse.
**/
- int GetMouseY();
+ int MouseY();
/*!
\brief Get Status of Left Button.
@@ -490,7 +490,7 @@ class ZEngine
Get Width of Window or Fullscreen mode.
\return Width of Display.
**/
- int GetWidth();
+ int Width();
/*!
\brief Get Current Display Height.
@@ -498,7 +498,7 @@ class ZEngine
Get Height of Window or Fullscreen mode.
\return Height of Display.
**/
- int GetHeight();
+ int Height();
/*!
\brief Get Current Display BPP.
@@ -506,7 +506,7 @@ class ZEngine
Get BPP of Window or Fullscreen mode.
\return BPP of Display.
**/
- int GetBPP();
+ int BPP();
/*!
\brief Get Fullscreen setting.
diff --git a/include/ZEngine.h b/include/ZEngine.h
index 34e27ef..9136128 100644
--- a/include/ZEngine.h
+++ b/include/ZEngine.h
@@ -3,7 +3,7 @@
File: ZEngine.h
Description: Public Header File for ZEngine.
Author(s): James Turk
-$Id: ZEngine.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
+$Id: ZEngine.h,v 1.2 2002/11/28 23:18:54 cozman Exp $
\file ZEngine.h
\brief Header file for ZEngine.
@@ -17,7 +17,7 @@ $Id: ZEngine.h,v 1.1 2002/11/21 05:41:10 cozman Exp $
\author James Turk
\version 0.7.5
- \date 21 November, 2002
+ \date 28 November, 2002
\section ZEngine About ZEngine
diff --git a/src/ZE_ZEngine.cpp b/src/ZE_ZEngine.cpp
index 234bcee..80a86d6 100644
--- a/src/ZE_ZEngine.cpp
+++ b/src/ZE_ZEngine.cpp
@@ -13,7 +13,7 @@
File: ZE_ZEngine.cpp
Description: Implementation source file for ZEngine library main singleton class.
Author(s): James Turk
-$Id: ZE_ZEngine.cpp,v 1.1 2002/11/21 05:41:12 cozman Exp $
+$Id: ZE_ZEngine.cpp,v 1.2 2002/11/28 23:19:55 cozman Exp $
\file ZE_ZEngine.cpp
\brief Central source file for ZEngine.
@@ -64,7 +64,7 @@ void ZEngine::ReleaseInstance()
{
if(sInstance)
{
- sInstance->CloseWindow();
+ sInstance->CloseDisplay();
delete sInstance;
}
sInstance = NULL;
@@ -91,11 +91,10 @@ void ZEngine::SetupSound(int rate, bool stereo)
}
#endif
-void ZEngine::CreateWindow(string title, string icon)
+void ZEngine::CreateDisplay(string title, string icon)
{
- Uint32 flags = SDL_DOUBLEBUF|SDL_HWPALETTE;
+ Uint32 flags;
ImageData iconImg;
- SDL_VideoInfo *videoInfo;
if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER|SDL_INIT_AUDIO) < 0)
{
@@ -107,8 +106,39 @@ void ZEngine::CreateWindow(string title, string icon)
Mix_OpenAudio(mRate, AUDIO_S16SYS, mStereo?2:1, 4096); //Open Audio Stream (Stereo?2:1 is conditional for number of channels)
#endif
- videoInfo = const_cast(SDL_GetVideoInfo());
+#ifdef USE_OPENGL_2D
+ int rgb_size[3];
+ switch (mBPP)
+ {
+ case 8:
+ rgb_size[0] = 3;
+ rgb_size[1] = 3;
+ rgb_size[2] = 2;
+ break;
+ case 15:
+ case 16:
+ rgb_size[0] = 5;
+ rgb_size[1] = 5;
+ rgb_size[2] = 5;
+ break;
+ default:
+ rgb_size[0] = 8;
+ rgb_size[1] = 8;
+ rgb_size[2] = 8;
+ break;
+ }
+ SDL_GL_SetAttribute( SDL_GL_RED_SIZE, rgb_size[0] );
+ SDL_GL_SetAttribute( SDL_GL_GREEN_SIZE, rgb_size[1] );
+ SDL_GL_SetAttribute( SDL_GL_BLUE_SIZE, rgb_size[2] );
+ SDL_GL_SetAttribute( SDL_GL_DEPTH_SIZE, 16 );
+ SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 );
+
+ flags = SDL_OPENGL;
+#else //!USE_OPENGL_2D
+ SDL_VideoInfo *videoInfo = const_cast(SDL_GetVideoInfo());
+
+ flags = SDL_DOUBLEBUF|SDL_HWPALETTE;
//check capabilities and use what we can//
if(videoInfo->hw_available)
flags |= SDL_HWSURFACE;
@@ -116,6 +146,7 @@ void ZEngine::CreateWindow(string title, string icon)
flags |= SDL_SWSURFACE;
if(videoInfo->blit_hw)
flags |= SDL_HWACCEL;
+#endif //USE_OPENGL_2D
//Window Manager settings//
if(!icon.length())
@@ -128,15 +159,49 @@ void ZEngine::CreateWindow(string title, string icon)
FreeImage(iconImg);
}
- //create SDL screen//
+ //create SDL screen and update settings based on returned screen//
if(mFullscreen)
flags |= SDL_FULLSCREEN;
mScreen = SDL_SetVideoMode(mWidth, mHeight, mBPP, flags);
+
+ mWidth = mScreen->w;
+ mHeight = mScreen->h;
+ mBPP = mScreen->format->BitsPerPixel;
+
+#ifdef USE_OPENGL_2D
+ //OpenGL code from SDL project testgl.c//
+ glViewport(0,0,mWidth,mHeight);
+ glMatrixMode(GL_PROJECTION);
+ glLoadIdentity();
+
+ glPushAttrib(GL_ENABLE_BIT);
+ glDisable(GL_DEPTH_TEST);
+ glDisable(GL_CULL_FACE);
+ glEnable(GL_TEXTURE_2D);
+
+ /* This allows alpha blending of 2D textures with the scene*/
+ glEnable(GL_BLEND);
+ glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
+
+ glViewport(0, 0, mWidth, mHeight);
+
+ glMatrixMode(GL_PROJECTION);
+ glPushMatrix();
+ glLoadIdentity();
+
+ glOrtho(0.0, (GLdouble)mWidth, (GLdouble)mHeight, 0.0, 0.0, 1.0);
+
+ glMatrixMode(GL_MODELVIEW);
+ glPushMatrix();
+ glLoadIdentity();
+
+ glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL);
+#endif //USE_OPENGL_2D
if(!mScreen)
{
LogError(FormatStr("Unable to set video mode %dx%d (%dBpp): %s",mWidth,mHeight,mBPP,SDL_GetError()));
- CloseWindow();
+ CloseDisplay();
}
mKeyPressed = SDL_GetKeyState(NULL);
@@ -148,7 +213,7 @@ void ZEngine::CreateWindow(string title, string icon)
mActive = true;
}
-void ZEngine::CloseWindow()
+void ZEngine::CloseDisplay()
{
#ifdef USE_SDL_TTF
TTF_Quit();
@@ -165,14 +230,18 @@ void ZEngine::CloseWindow()
SDL_Quit();
}
-SDL_Surface *ZEngine::GetDisplay()
+SDL_Surface *ZEngine::Display()
{
return mScreen;
}
void ZEngine::UpdateScreen()
{
+#ifdef USE_OPENGL_2D
+ SDL_GL_SwapBuffers();
+#else //!USE_OPENGL_2D
SDL_Flip(mScreen);
+#endif //USE_OPENGL_2D
mSecPerFrame = (GetTime()-mLastTime)/1000.0;
mLastTime = GetTime();
@@ -188,7 +257,7 @@ void ZEngine::Clear(Uint32 color, SDL_Rect *rect)
SDL_FillRect(mScreen,rect,color);
}
-void ZEngine::Sleep(Uint32 milliseconds)
+void ZEngine::Delay(Uint32 milliseconds)
{
SDL_Delay(milliseconds);
}
@@ -259,12 +328,12 @@ void ZEngine::ShowCursor()
SDL_ShowCursor(SDL_ENABLE);
}
-int ZEngine::GetMouseX()
+int ZEngine::MouseX()
{
return mMouseX;
}
-int ZEngine::GetMouseY()
+int ZEngine::MouseY()
{
return mMouseY;
}
@@ -512,17 +581,17 @@ void ZEngine::FreeFont(FontData &font)
#endif
-int ZEngine::GetWidth()
+int ZEngine::Width()
{
return mWidth;
}
-int ZEngine::GetHeight()
+int ZEngine::Height()
{
return mHeight;
}
-int ZEngine::GetBPP()
+int ZEngine::BPP()
{
return mBPP;
}
diff --git a/src/ZE_ZImage.cpp b/src/ZE_ZImage.cpp
index 241b459..2d8ad24 100644
--- a/src/ZE_ZImage.cpp
+++ b/src/ZE_ZImage.cpp
@@ -13,7 +13,7 @@
File: ZE_ZImage.cpp
Description: Implementation source file for core ZEngine Image Object.
Author(s): James Turk
-$Id: ZE_ZImage.cpp,v 1.1 2002/11/21 05:41:13 cozman Exp $
+$Id: ZE_ZImage.cpp,v 1.2 2002/11/28 23:19:55 cozman Exp $
\file ZE_ZImage.cpp
\brief Source file for ZImage.
@@ -59,7 +59,7 @@ void ZImage::Open(string filename)
void ZImage::OpenFromImage(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint16 h)
{
Uint32 flags;
- SDL_Surface *screen = rEngine->GetDisplay();
+ SDL_Surface *screen = rEngine->Display();
SDL_Rect rect;
SDL_VideoInfo *videoInfo;
@@ -82,7 +82,7 @@ void ZImage::OpenFromImage(SDL_Surface *img, Sint16 x, Sint16 y, Sint16 w, Sint1
if(!img)
LogError("Invalid Parameter to ZImage::OpenFromImage: img==NULL");
- rImage.image = SDL_CreateRGBSurface(flags, rect.w, rect.h, rEngine->GetBPP(),
+ rImage.image = SDL_CreateRGBSurface(flags, rect.w, rect.h, rEngine->BPP(),
screen->format->Rmask, screen->format->Gmask, screen->format->Bmask, screen->format->Amask);
if(!rImage.image)
@@ -123,7 +123,7 @@ void ZImage::SetAlpha(Uint8 alpha)
}
else //can't convert (add error warning here?)
{
- LogError("Alpha surface conversion failed.");
+ LogError("Alpha surface conversion failed.");
rImage.image = temp;
}
}
@@ -169,7 +169,7 @@ void ZImage::Draw(Sint16 x, Sint16 y)
rect.y = y;
if(rImage.image)
- SDL_BlitSurface(rImage.image,NULL,rEngine->GetDisplay(),&rect);
+ SDL_BlitSurface(rImage.image,NULL,rEngine->Display(),&rect);
else
LogError("ZImage not initialized in ZImage::Draw.");
}
diff --git a/test/ZFontTest.cpp b/test/ZFontTest.cpp
index 60be1aa..c3a5c4f 100644
--- a/test/ZFontTest.cpp
+++ b/test/ZFontTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZFontTest","title","ZFont Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -59,8 +59,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZImage Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZImage Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
diff --git a/test/ZImageTest.cpp b/test/ZImageTest.cpp
index 892fd3e..bf71b09 100644
--- a/test/ZImageTest.cpp
+++ b/test/ZImageTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZImageTest","title","ZImage Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -57,8 +57,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZImage Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZImage Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
diff --git a/test/ZMouseTest.cpp b/test/ZMouseTest.cpp
index 907539c..c4c64a9 100644
--- a/test/ZMouseTest.cpp
+++ b/test/ZMouseTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZMouseTest","title","ZMouse Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -58,26 +58,26 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZEngine Mouse Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZEngine Mouse Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
//show where mouse is (clicked or not)//
if(engine->RButtonPressed())
- font.DrawText(FormatStr("Right button clicked at %d,%d",engine->GetMouseX(),engine->GetMouseY()),text[2]);
+ font.DrawText(FormatStr("Right button clicked at %d,%d",engine->MouseX(),engine->MouseY()),text[2]);
else if(engine->LButtonPressed())
- font.DrawText(FormatStr("Left button clicked at %d,%d",engine->GetMouseX(),engine->GetMouseY()),text[2]);
+ font.DrawText(FormatStr("Left button clicked at %d,%d",engine->MouseX(),engine->MouseY()),text[2]);
else
- font.DrawText(FormatStr("Mouse at %d,%d",engine->GetMouseX(),engine->GetMouseY()),text[2]);
+ font.DrawText(FormatStr("Mouse at %d,%d",engine->MouseX(),engine->MouseY()),text[2]);
engine->Clear(); //clear screen
//draw the images//
text[engine->MouseInRect(&textRect)].Draw(100,100);
text[2].Draw(0,0);
- cursor.Draw(engine->GetMouseX()-8,engine->GetMouseY()-8);
+ cursor.Draw(engine->MouseX()-8,engine->MouseY()-8);
engine->UpdateScreen(); //update the screen
diff --git a/test/ZMusicTest.cpp b/test/ZMusicTest.cpp
index c932ed6..00a0c73 100644
--- a/test/ZMusicTest.cpp
+++ b/test/ZMusicTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZMusicTest","title","ZMusic Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -42,7 +42,7 @@ void Test()
if(!song.IsLoaded()) //this executes if there is no music.ogg file
{
engine->SetupDisplay(800,70,32,false);
- engine->CreateWindow("ZMusic Test");
+ engine->CreateDisplay("ZMusic Test");
font.DrawText("Music.ogg does not exist, please read music.txt.",text[0]);
text[0].Draw(0,0);
engine->UpdateScreen();
@@ -65,8 +65,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZMusic Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZMusic Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
diff --git a/test/ZRectTest.cpp b/test/ZRectTest.cpp
index 90042fd..66122d6 100644
--- a/test/ZRectTest.cpp
+++ b/test/ZRectTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZRectTest","title","ZRect Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -43,8 +43,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZRect Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZRect Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
diff --git a/test/ZSoundTest.cpp b/test/ZSoundTest.cpp
index 1f3a3c9..55a9781 100644
--- a/test/ZSoundTest.cpp
+++ b/test/ZSoundTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZSoundTest","title","ZSound Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -55,8 +55,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZSound Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZSound Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
diff --git a/test/ZTimerTest.cpp b/test/ZTimerTest.cpp
index 59e5a2a..190a5a7 100644
--- a/test/ZTimerTest.cpp
+++ b/test/ZTimerTest.cpp
@@ -28,7 +28,7 @@ void Initialize()
title = cfg.GetString("ZTimerTest","title","ZTimer Test");
engine->SetupDisplay(w,h,bpp,fs);
- engine->CreateWindow(title);
+ engine->CreateDisplay(title);
}
void Test()
@@ -53,8 +53,8 @@ void Test()
if(engine->KeyIsPressed(SDLK_s))
{
//code to toggle screen//
- engine->SetupDisplay(engine->GetWidth(),engine->GetHeight(),engine->GetBPP(),!engine->IsFullscreen());
- engine->CreateWindow("ZImage Test");
+ engine->SetupDisplay(engine->Width(),engine->Height(),engine->BPP(),!engine->IsFullscreen());
+ engine->CreateDisplay("ZImage Test");
}
if(engine->KeyIsPressed(SDLK_ESCAPE))
engine->RequestQuit();
@@ -95,7 +95,7 @@ void Test()
{
if(++curTimer > 2)
curTimer = 0;
- engine->Sleep(200);
+ engine->Delay(200);
}
//Render all the fonts//
diff --git a/todo.txt b/todo.txt
index 106baed..6c9052f 100644
--- a/todo.txt
+++ b/todo.txt
@@ -1,5 +1,6 @@
ZEngine Todo List
+-Add OpenGL 2D support for drawing.
-Proofread, update, clarify documentation.
-Add Support for PhysicsFS with SDL_ttf and SDL_mixer music. (Waiting on other libraries.)
-Write simple games using the library as examples