summaryrefslogtreecommitdiffstats
path: root/konquest/minimap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konquest/minimap.cpp')
-rw-r--r--konquest/minimap.cpp79
1 files changed, 79 insertions, 0 deletions
diff --git a/konquest/minimap.cpp b/konquest/minimap.cpp
new file mode 100644
index 00000000..479e997e
--- /dev/null
+++ b/konquest/minimap.cpp
@@ -0,0 +1,79 @@
+#include <tqpixmap.h>
+#include <tqpainter.h>
+
+#include <tdeapplication.h>
+#include <kiconloader.h>
+
+#include "minimap.h"
+#include "minimap.moc"
+
+MiniMap::MiniMap( TQWidget *parent, const char *name )
+ : TQGridView( parent, name ),
+ SECTOR_HEIGHT( 12 ), SECTOR_WIDTH( 12 ),
+ BOARD_HEIGHT( 10 * SECTOR_HEIGHT ),
+ BOARD_WIDTH( 10 * SECTOR_WIDTH ),
+ map( 0 )
+{
+ setFrameStyle( NoFrame );
+ setPaletteBackgroundColor( black );
+ setMinimumSize( BOARD_HEIGHT, BOARD_WIDTH );
+
+ setCellWidth( SECTOR_WIDTH );
+ setCellHeight( SECTOR_HEIGHT );
+ setNumRows( 10 );
+ setNumCols( 10 );
+
+ setMinimumSize( BOARD_HEIGHT, BOARD_WIDTH );
+ setMaximumSize( BOARD_HEIGHT, BOARD_WIDTH );
+}
+
+void
+MiniMap::setMap(Map *newMap)
+{
+ map = newMap;
+ BOARD_HEIGHT = map->getRows() * SECTOR_HEIGHT;
+ BOARD_WIDTH = map->getColumns() * SECTOR_WIDTH;
+ setNumRows( map->getRows() );
+ setNumCols( map->getColumns() );
+
+ setMinimumSize( BOARD_HEIGHT, BOARD_WIDTH );
+ setMaximumSize( BOARD_HEIGHT, BOARD_WIDTH );
+
+ connect( map, TQT_SIGNAL( update() ), this, TQT_SLOT( mapUpdate() ) );
+}
+
+MiniMap::~MiniMap()
+{
+}
+
+
+void
+MiniMap::paintCell( TQPainter *p, int row, int col )
+{
+ drawSector( p, map->getSector( row, col ) );
+}
+
+void
+MiniMap::mapUpdate()
+{
+ updateContents();
+}
+
+
+void
+MiniMap::drawSector( TQPainter *p, Sector &sector )
+{
+ TQRect r( 0, 0, SECTOR_WIDTH, SECTOR_HEIGHT );
+
+ p->setPen( black );
+ p->setBrush( black );
+ p->drawRect( r );
+
+ if( sector.hasPlanet() ) {
+ p->setPen( sector.getPlanet()->getPlayer()->getColor() );
+ p->setBrush( sector.getPlanet()->getPlayer()->getColor() );
+
+ p->drawPie( r, 0, (360 * 16)-1 );
+ }
+}
+