From 2cc546b30a2283f24c4ceca0aa989b4b10017c2e Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 14 Jun 2011 14:41:38 +1000 Subject: [PATCH] Mac Pow Fix --- Projects/CodeBlocks/SleepyHead.depend | 26 +++++++++++++------------- src/SleepyHeadMain.cpp | 10 ++++++---- src/graphs/graph.cpp | 26 +++++++++++++------------- src/libs/freetype-gl/texture-atlas.cpp | 6 ++++-- src/libs/freetype-gl/texture-font.cpp | 2 +- src/libs/freetype-gl/texture-glyph.cpp | 4 +++- src/libs/freetype-gl/vertex-buffer.cpp | 8 ++------ src/libs/freetype-gl/vertex-buffer.h | 6 +++--- src/version.h | 12 ++++++------ 9 files changed, 51 insertions(+), 49 deletions(-) diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 75334c69..4762faab 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8306,7 +8306,7 @@ -1308007178 /home/mark/projects/git/sleepyhead/src/version.h +1308025958 /home/mark/projects/git/sleepyhead/src/version.h 1307627540 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8324,7 +8324,7 @@ "preferences.h" "tinyxml/tinyxml.h" -1307991977 source:/home/mark/projects/git/sleepyhead/src/SleepyHeadMain.cpp +1308010361 source:/home/mark/projects/git/sleepyhead/src/SleepyHeadMain.cpp "wx_pch.h" "version.h" @@ -8344,14 +8344,14 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1308007178 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1308010945 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp - - + - + + @@ -10931,9 +10931,9 @@ "text-markup.h" "vertex-buffer.h" -1308003215 /home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.h +1308009703 /home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.h - + "freetype-gl/vector.h" @@ -11014,9 +11014,9 @@ "font-manager.h" "text-markup.h" -1308000368 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-atlas.cpp +1308009126 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-atlas.cpp - + "texture-atlas.h" 1307999961 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-font.cpp @@ -11025,13 +11025,13 @@ "texture-font.h" -1308003216 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-glyph.cpp +1308009682 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/texture-glyph.cpp - + "texture-glyph.h" -1308002517 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.cpp +1308011216 source:/home/mark/projects/git/sleepyhead/src/libs/freetype-gl/vertex-buffer.cpp diff --git a/src/SleepyHeadMain.cpp b/src/SleepyHeadMain.cpp index ebc5d957..9e7bff32 100644 --- a/src/SleepyHeadMain.cpp +++ b/src/SleepyHeadMain.cpp @@ -947,17 +947,19 @@ void Daily::RefreshData() } wxRect r=HTMLInfo->GetRect(); int w=r.width-27; - ahi_bmp=G_AHI->RenderBitmap(w,25); + /* ahi_bmp=G_AHI->RenderBitmap(w,25); tap_bmp=TAP->RenderBitmap(w,25); - wxMemoryFSHandler::AddFile(_T("ahi.png"), *ahi_bmp, wxBITMAP_TYPE_PNG); - wxMemoryFSHandler::AddFile(_T("tap.png"), *tap_bmp, wxBITMAP_TYPE_PNG); + if (ahi_bmp) + wxMemoryFSHandler::AddFile(_T("ahi.png"), *ahi_bmp, wxBITMAP_TYPE_PNG); + if (tap_bmp) + wxMemoryFSHandler::AddFile(_T("tap.png"), *tap_bmp, wxBITMAP_TYPE_PNG); if (mode==MODE_BIPAP) { teap_bmp=TAP_EAP->RenderBitmap(w,25); tiap_bmp=TAP_IAP->RenderBitmap(w,25); wxMemoryFSHandler::AddFile(_T("teap.png"), *teap_bmp, wxBITMAP_TYPE_PNG); wxMemoryFSHandler::AddFile(_T("tiap.png"), *tiap_bmp, wxBITMAP_TYPE_PNG); - } + } */ pr=(PRTypes)cpap->summary_max(CPAP_PressureReliefType); if (pr==PR_NONE) diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index cc54c9b8..c68e39da 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -5,17 +5,22 @@ Author: Mark Watkins License: LGPL */ +#define GL_GLEXT_PROTOTYPES + #ifdef __DARWIN__ #include #include #elif defined(__WXMSW__) -#include +#define GLEW_STATIC +#include #endif -#include + #include -#include #include + +#include +#include #include #include #include @@ -123,6 +128,7 @@ void DrawText2(wxString text, float x, float y,TextureFont *font) TextureGlyph *glyph; glyph=font->GetGlyph((wchar_t)text[0]); if (!glyph) return; + assert(vbuffer!=NULL); vbuffer->Clear(); glyph->AddToVertexBuffer(vbuffer, markup, &pen); @@ -149,13 +155,7 @@ void DrawText(wxString text, float x, float y, float angle=0, const wxColor & co return; } if (angle==0) { - // Colourizing this just plain sucks.. - DrawText2(text,x,y,font); // - /*glPixelTransferf(GL_RED_BIAS, -1.0f); - glPixelTransferf(GL_GREEN_BIAS, -1.0f); - glPixelTransferf(GL_BLUE_BIAS, -1.0f); - glColor4ub(color.Red(),color.Green(),color.Blue(),color.Alpha()); - font->Render(text.mb_str(),-1,FTPoint(x,y)); //,x,y);*/ + DrawText2(text,x,y,font); return; } @@ -169,7 +169,6 @@ void DrawText(wxString text, float x, float y, float angle=0, const wxColor & co glTranslatef(x,y,0); glRotatef(angle, 0.0f, 0.0f, 1.0f); DrawText2(text,-w/2.0,-h/2.0,font); - //font->Render(text.mb_str(),-1,FTPoint(-w/2.0,-h/2.0)); glTranslatef(-x,-y,0); glPopMatrix(); @@ -824,11 +823,12 @@ wxBitmap * gGraphWindow::RenderBitmap(int width,int height) //pBuffers are evil.. but I need to use them here. #if defined(__WXMSW__) - /* HDC hDC = wglGetCurrentDC(); + HDC hDC = wglGetCurrentDC(); // Get ready to query for a suitable pixel format that meets our minimum requirements. - int iAttributes[2*MAX_ATTRIBS]; + + /*int iAttributes[2*MAX_ATTRIBS]; float fAttributes[2*MAX_ATTRIBS]; int nfAttribs = 0; int niAttribs = 0; diff --git a/src/libs/freetype-gl/texture-atlas.cpp b/src/libs/freetype-gl/texture-atlas.cpp index 3fad7850..83b69ef1 100644 --- a/src/libs/freetype-gl/texture-atlas.cpp +++ b/src/libs/freetype-gl/texture-atlas.cpp @@ -22,8 +22,10 @@ * ========================================================================= */ #if defined(__APPLE__) #include -#else - #include +#else + #define GL_GLEXT_PROTOTYPES + + #include #endif //#include //#include diff --git a/src/libs/freetype-gl/texture-font.cpp b/src/libs/freetype-gl/texture-font.cpp index 9114436f..8ffb0a74 100644 --- a/src/libs/freetype-gl/texture-font.cpp +++ b/src/libs/freetype-gl/texture-font.cpp @@ -145,7 +145,7 @@ int TextureFont::CacheGlyphs(wchar_t * charcodes) for( x=0; xbitmap.width; ++x ) { for( y=0; ybitmap.rows; ++y ){ c = *(unsigned char *)(slot->bitmap.buffer + y*slot->bitmap.pitch + x ); - c = (unsigned char) ( pow(c/255.0, m_gamma) * 255); + c = (unsigned char) ( pow((float)c/255.0, (float)m_gamma) * 255); *(unsigned char *)(slot->bitmap.buffer + y*slot->bitmap.pitch + x ) = c; } } diff --git a/src/libs/freetype-gl/texture-glyph.cpp b/src/libs/freetype-gl/texture-glyph.cpp index c5231135..ef77d493 100644 --- a/src/libs/freetype-gl/texture-glyph.cpp +++ b/src/libs/freetype-gl/texture-glyph.cpp @@ -23,7 +23,9 @@ #if defined(__APPLE__) #include #elif defined(__WXMSW__) -#include +#define GL_GLEXT_PROTOTYPES +#define GLEW_STATIC +#include #else #include #endif diff --git a/src/libs/freetype-gl/vertex-buffer.cpp b/src/libs/freetype-gl/vertex-buffer.cpp index a3ec83f1..ae019f57 100644 --- a/src/libs/freetype-gl/vertex-buffer.cpp +++ b/src/libs/freetype-gl/vertex-buffer.cpp @@ -114,14 +114,10 @@ void VertexBuffer::Upload() glGenBuffers(1, &indices_id ); } glBindBuffer(GL_ARRAY_BUFFER, vertices_id); - glBufferData(GL_ARRAY_BUFFER, - vertices->size * vertices->item_size, - vertices->items, GL_DYNAMIC_DRAW); + glBufferData(GL_ARRAY_BUFFER, vertices->size * vertices->item_size, vertices->items, GL_DYNAMIC_DRAW); glBindBuffer(GL_ARRAY_BUFFER, 0); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, indices_id); - glBufferData(GL_ELEMENT_ARRAY_BUFFER, - indices->size * indices->item_size, - indices->items, GL_DYNAMIC_DRAW); + glBufferData(GL_ELEMENT_ARRAY_BUFFER, indices->size * indices->item_size, indices->items, GL_DYNAMIC_DRAW); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); } diff --git a/src/libs/freetype-gl/vertex-buffer.h b/src/libs/freetype-gl/vertex-buffer.h index ac36e3b0..704f5191 100644 --- a/src/libs/freetype-gl/vertex-buffer.h +++ b/src/libs/freetype-gl/vertex-buffer.h @@ -25,15 +25,15 @@ #ifndef __VERTEX_BUFFER_H__ #define __VERTEX_BUFFER_H__ +#define GL_GLEXT_PROTOTYPES #if defined(__APPLE__) #include #elif defined(__WXMSW__) - -#include +#define GLEW_STATIC +#include #else - #define GL_GLEXT_PROTOTYPES 1 //#include //#include #include diff --git a/src/version.h b/src/version.h index 3dbfcdbd..b4ed8bdc 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 5609; - static const long REVISION = 13956; + static const long BUILD = 5640; + static const long REVISION = 14116; //Miscellaneous Version Types - static const long BUILDS_COUNT = 5788; - #define RC_FILEVERSION 0,7,5609,13956 - #define RC_FILEVERSION_STRING "0, 7, 5609, 13956\0" - static const char FULLVERSION_STRING[] = "0.7.5609.13956"; + static const long BUILDS_COUNT = 5842; + #define RC_FILEVERSION 0,7,5640,14116 + #define RC_FILEVERSION_STRING "0, 7, 5640, 14116\0" + static const char FULLVERSION_STRING[] = "0.7.5640.14116"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;