From a5438f6a9374048958c640433171f0f33dd2e3b8 Mon Sep 17 00:00:00 2001 From: Rampoina Date: Thu, 11 Aug 2022 17:26:59 +0200 Subject: [PATCH] Use the cancel icon for the unused grid locations --- source/glest_game/gui/gui.cpp | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/source/glest_game/gui/gui.cpp b/source/glest_game/gui/gui.cpp index 2b9eb2a6..96190200 100644 --- a/source/glest_game/gui/gui.cpp +++ b/source/glest_game/gui/gui.cpp @@ -993,7 +993,12 @@ void Gui::computeDisplay(){ for(int i= 0; i < ut->getCommandTypeSortedCount(); ++i){ int displayPos= i; const CommandType *ct= ut->getCommandTypeSorted(i); - if(ct == NULL) continue; + if(ct == NULL) { + display.setDownImage(displayPos, ut->getCancelImage()); + display.setCommandType(displayPos, ct); + display.setDownLighted(displayPos,false); + continue; + } if(ct->getClass() == ccMorph) { displayPos= morphPos++; } @@ -1042,7 +1047,15 @@ void Gui::computeDisplay(){ else{ //printf("selection.isUniform() == FALSE\n"); //non uniform selection - int basicPos= CommandHelper::getRowPos(crBasics); + int basicPos = CommandHelper::getRowPos(crBasics); + + // First row is always empty + for (int i = 0; i < 5; i++) { + display.setDownImage(i, ut->getCancelImage()); + display.setCommandType(i, NULL); + display.setDownLighted(i,false); + } + // only basics can be shared for(auto &&cc : CommandHelper::getBasicsCC()){ @@ -1064,8 +1077,10 @@ void Gui::computeDisplay(){ display.setDownImage(basicPos + ccPos, ut->getFirstCtOfClass(cc)->getImage()); } display.setCommandClass(basicPos + ccPos, cc); - display.setCommandClass(lastCommand, cc); - lastCommand++; + } else { + display.setDownImage(basicPos+ccPos, ut->getCancelImage()); + display.setCommandType(basicPos+ccPos, NULL); + display.setDownLighted(basicPos+ccPos,false); } } }