]> git.mxchange.org Git - quix0rs-blobwars.git/blobdiff - src/info.cpp
Added .gitignore to ignore certain files + fixed access rights on Makefile* as
[quix0rs-blobwars.git] / src / info.cpp
index 7225629ce0fc52be0b83702569d75c6dc3413100..f3934e2434af7f69ec47310bc559db1fd5d72846 100644 (file)
@@ -1,5 +1,6 @@
 /*
-Copyright (C) 2004 Parallel Realities
+Copyright (C) 2004-2011 Parallel Realities
+Copyright (C) 2011-2015 Perpendicular Dimensions
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
@@ -51,6 +52,10 @@ void doTimeRemaining()
 
 void doStatusBar()
 {
+       static Graphics::SurfaceCache healthCache;
+       static Graphics::SurfaceCache oxygenCache;
+       static Graphics::SurfaceCache jetpackCache;
+
        graphics.setFontSize(0);
        graphics.setFontColor(0xff, 0xff, 0xff, 0x00, 0x00, 0x00);
 
@@ -58,7 +63,7 @@ void doStatusBar()
 
        graphics.blit(graphics.infoBar, 0, 0, graphics.screen, false);
 
-       graphics.drawString(_("Health"), 50, 5, TXT_RIGHT, graphics.screen);
+       graphics.drawString(_("Health"), 50, 5, TXT_RIGHT, graphics.screen, healthCache);
 
        for (int i = 0 ; i < MAX_HEALTH ; i++)
        {
@@ -75,7 +80,7 @@ void doStatusBar()
 
        if ((!game.hasAquaLung) && (!engine.cheatExtras))
        {
-               graphics.drawString(_("Oxygen"), 305, 5, TXT_RIGHT, graphics.screen);
+               graphics.drawString(_("Oxygen"), 305, 5, TXT_RIGHT, graphics.screen, oxygenCache);
 
                for (int i = 0 ; i < 7 ; i++)
                {
@@ -92,7 +97,7 @@ void doStatusBar()
        }
        else if ((game.hasJetPack) || (engine.cheatExtras))
        {
-               graphics.drawString(_("Jetpack"), 305, 5, TXT_RIGHT, graphics.screen);
+               graphics.drawString(_("Jetpack"), 305, 5, TXT_RIGHT, graphics.screen, jetpackCache);
 
                for (int i = 0 ; i < 7 ; i++)
                {
@@ -131,8 +136,9 @@ void doStatusBar()
                                        break;
                        }
        
+                       static Graphics::SurfaceCache cache;
                        graphics.blit(graphics.infoBar, 0, 455, graphics.screen, false);
-                       graphics.drawString(_(engine.message), 320, 466, true, graphics.screen);
+                       graphics.drawString(_(engine.message), 320, 466, true, graphics.screen, cache);
                        
                        engine.messageTime--;
                        if (engine.messageTime == -1)
@@ -150,7 +156,8 @@ void doStatusBar()
                {
                        graphics.blit(graphics.infoBar, 0, 455, graphics.screen, false);
                        
-                       graphics.drawString(_(map.mainBossPart->name), 255, 460, TXT_RIGHT, graphics.screen);
+                       static Graphics::SurfaceCache cache;
+                       graphics.drawString(_(map.mainBossPart->name), 255, 460, TXT_RIGHT, graphics.screen, cache);
                        graphics.drawRect(265 - 1, 463 - 1, 200 + 2, 10 + 2, graphics.white, graphics.screen);
                        graphics.drawRect(265, 463, 200, 10, graphics.black, graphics.screen);
                        
@@ -161,8 +168,9 @@ void doStatusBar()
                }
        }
 
+       static Graphics::SurfaceCache weaponCache;
        snprintf(string, sizeof string, "%s %s", _("Weapon:"), _(player.currentWeapon->name));
-       graphics.drawString(string, 630, 5, TXT_RIGHT, graphics.screen);
+       graphics.drawString(string, 630, 5, TXT_RIGHT, graphics.screen, weaponCache);
        
        if (game.skill == 3)
        {
@@ -185,13 +193,15 @@ void doStatusBar()
                                        }
                                }
                        }
-                       graphics.drawString(string, 320, 35, TXT_CENTERED, graphics.screen);
+                       static Graphics::SurfaceCache cache;
+                       graphics.drawString(string, 320, 35, TXT_CENTERED, graphics.screen, cache);
                }
                else
                {
+                       static Graphics::SurfaceCache cache;
                        graphics.setFontColor(0xff, 0x00, 0x00, 0x00, 0x00, 0x00);
                        graphics.setFontSize(3);
-                       graphics.drawString(_("Mission Failed! Time Up!"), 320, 220, TXT_CENTERED, graphics.screen);
+                       graphics.drawString(_("Mission Failed! Time Up!"), 320, 220, TXT_CENTERED, graphics.screen, cache);
                        graphics.setFontSize(0);
                        game.canContinue = 0;
                }
@@ -241,7 +251,7 @@ void doPauseInfo()
 
        // Do the objectives list
        Objective *objective = (Objective*)map.objectiveList.getHead();
-       char message[100];
+       char message[256];
 
        y += 60;
 
@@ -315,89 +325,125 @@ void doPauseInfo()
 
        graphics.setFontColor(0xff, 0xff, 0xff, 0x00, 0x00, 0x00);
 
-       y += 10;
-
        snprintf(string, sizeof string, "%s - %.2d:%.2d:%.2d", _("Mission Time"), game.currentMissionHours, game.currentMissionMinutes, game.currentMissionSeconds);
        graphics.drawString(string, 320, 430, TXT_CENTERED, graphics.screen);
 }
 
-void doMusicInfo(unsigned int ticks)
+SDL_Surface *createMusicInfo(void)
 {
-       if(!audio.songtitle[0])
-               return;
-
-       if(ticks != (unsigned int)-1) {
-               if(ticks > 12000 || ticks < 5000)
-                       return;
-
-               unsigned int r = rand() & 0x3ff;
-
-               if(ticks - 5000 < r || 12000 - ticks < r)
-                       return;
-       }
-
        graphics.setFontSize(0);
        graphics.setFontColor(0xff, 0xff, 0xff, 0x40, 0x40, 0x40);
 
-       SDL_Surface *text;
-
-       const int x = 620;
-       int y = 420;
+       SDL_Surface *text1;
+       SDL_Surface *text2 = NULL;
+       SDL_Surface *text3 = NULL;
+       SDL_Surface *icon = NULL;
+       SDL_Surface *panel;
 
-       static int w = 0;
-       static int h = 0;
+       int w = 0;
+       int h = 0;
 
-       if(w && h)
-               graphics.drawRect(x - w - 5, y - h - 5, w + 10, h + 10, graphics.darkGrey, graphics.screen);
-
-       w = h = 0;
-
-       text = graphics.getString(audio.songtitle, true);
-       y -= text->h;
-       h = text->h;
-       w = text->w;
-
-       graphics.blit(text, x - text->w, y, graphics.screen, false);
-       SDL_FreeSurface(text);
+       text1 = graphics.getString(audio.songtitle, true);
+       h = text1->h;
+       w = text1->w;
 
        if(audio.songalbum[0])
        {
                graphics.setFontColor(0x80, 0xc0, 0xff, 0x40, 0x40, 0x40);
                
-               text = graphics.getString(audio.songalbum, true);
-               y -= text->h + 4;
-               h += text->h + 4;
-               if(text->w > w)
-                       w = text->w;
-
-               graphics.blit(text, x - text->w, y, graphics.screen, false);
-               SDL_FreeSurface(text);
+               text2 = graphics.getString(audio.songalbum, true);
+               h += text2->h + 4;
+               if(text2->w > w)
+                       w = text2->w;
+
        }
 
        if(audio.songartist[0])
        {
                graphics.setFontColor(0xff, 0xc0, 0x80, 0x40, 0x40, 0x40);
 
-               text = graphics.getString(audio.songartist, true);
-               y -= text->h + 4;
-               h += text->h + 4;
-               if(text->w > w)
-                       w = text->w;
-
-               graphics.blit(text, x - text->w, y, graphics.screen, false);
-               SDL_FreeSurface(text);
+               text3 = graphics.getString(audio.songartist, true);
+               h += text3->h + 4;
+               if(text3->w > w)
+                       w = text3->w;
        }
 
        if(audio.songlicense >= 0)
        {
-               SDL_Surface *icon = graphics.license[audio.songlicense];
+               icon = graphics.license[audio.songlicense];
 
-               y -= icon->h + 8;
                h += icon->h + 8;
                if(icon->w > w)
                        w = icon->w;
+       }
+
+       int y = h + 5;
+       int x = w + 5;
+
+       panel = graphics.createSurface(w + 10, h + 10);
+       SDL_FillRect(panel, NULL, SDL_MapRGBA(panel->format, 0, 0, 0, 128));
+
+       if (text1) {
+               y -= text1->h;
+               graphics.blit(text1, x - text1->w, y, panel, false);
+               SDL_FreeSurface(text1);
+       }
+
+       if (text2) {
+               y -= text2->h + 4;
+               graphics.blit(text2, x - text2->w, y, panel, false);
+               SDL_FreeSurface(text2);
+       }
+
+       if (text3) {
+               y -= text3->h + 4;
+               graphics.blit(text3, x - text3->w, y, panel, false);
+               SDL_FreeSurface(text3);
+       }
 
-               graphics.blit(icon, x - icon->w, y, graphics.screen, false);
+       if (icon) {
+               y -= icon->h + 8;
+               graphics.blit(icon, x - icon->w, y, panel, false);
        }
+
+       return panel;
 }
 
+void doMusicInfo(unsigned int ticks)
+{
+       if(!audio.songtitle[0])
+               return;
+
+       static SDL_Surface *panel;
+       float alpha = 1;
+
+       if (ticks != -1U)
+       {
+               if (ticks > 12000 || ticks < 5000)
+               {
+                       if (panel)
+                       {
+                               SDL_FreeSurface(panel);
+                               panel = NULL;
+                       }
+
+                       return;
+               }
+
+               if(ticks < 6000)
+                       alpha = 1 - (6000 - ticks) / 1000.0f;
+               else if(ticks > 11000)
+                       alpha = (12000 - ticks) / 1000.0f;
+       }
+
+       if (alpha > 0.99)
+               alpha = 0.99;
+
+       if (!panel)
+               panel = createMusicInfo();
+       if (!panel)
+               return;
+
+       SDL_SetAlpha(panel, 255 * alpha);
+       graphics.blit(panel, 620 - panel->w, 420 - panel->h, graphics.screen, false);
+}