Added the number of ghots to test ship images
[ghostsoverboard] / seascene.cpp
1 #include "seascene.h"
2 #include "timercontrolledtursas.h"
3 #include "ship.h"
4 #include <QGraphicsPixmapItem>
5 #include <QDebug>
6 #include <QMessageBox>
7
8 const QString ghostImageFilename_ = ":/pix/aave.png";
9 const QString rockImageFilename_ =":/pix/kari.png";
10 const QString octopusImageFilename_= ":/pix/tursas.png";
11
12
13 SeaScene::SeaScene(QObject *parent) :
14     QGraphicsScene(parent)
15 {
16
17
18 }
19
20 void SeaScene::setupMap(int ghosts, int rocks, int octopuses)
21 {
22     //empty the map
23
24     clear();
25
26     //empty the list of free slots
27     freeTiles_.clear();
28
29     //fill the list of free slots
30
31     int numberOfXTiles  = width() / 40;
32     int numberOfYTiles = height() /40;
33
34     qDebug() << numberOfXTiles << " slots in x direction";
35     qDebug() << numberOfYTiles << " slots in y rirection";
36
37     for (int i = 0; i < numberOfXTiles; i++ )
38     {
39         for (int j = 0; j < numberOfYTiles; j++)
40         {
41             freeTiles_.append(QPointF(i*40,j*40));
42         }
43     }
44
45
46     //spread the rocks
47
48     for (int i = 0; i < rocks; i++)
49     {
50         QPointF * pPosition = findRandomFreeSlot();
51
52         //If there was no room no point to continue
53         if (pPosition == NULL)
54             break;
55
56         QPixmap rockPixmap (":/pix/kari.png");
57         QGraphicsPixmapItem * pRock = addPixmap(rockPixmap);
58         pRock->setData(0,"rock");
59         pRock->setPos(*pPosition);
60         delete pPosition;
61
62     }
63
64     //spread the ghosts
65
66     ghostsLeft_ = ghosts;
67     spreadGhosts(ghosts);
68
69
70
71     //spread the octopuses
72
73
74     for (int i=0; i < octopuses; i++)
75     {
76         QPointF * pPosition = findRandomFreeSlot();
77
78         //If there was no room no point to continue
79         if (pPosition == NULL)
80             break;
81
82     QPixmap octopusPixmap (":/pix/tursas.png");
83     TimerControlledTursas * pOctopus = new TimerControlledTursas (octopusPixmap,100);
84     pOctopus->setData(0,"octopus");
85     pOctopus->setPos(*pPosition);
86     addItem(pOctopus);
87     pOctopus->startMoving();
88     delete pPosition;
89
90     }
91
92
93     //place the ship
94
95     QPointF * pPosition = findRandomFreeSlot();
96     if (pPosition == NULL)
97     {
98         // Game cannot begin without a free position for ship, so give an error message and return
99
100         QMessageBox::critical(NULL,"Error! Too many objects on screen","No free space to place the ship. The game cannot start. Please choose another level.");
101         return;
102     }
103
104     QList<QPixmap> shipImages;
105     shipImages.append(QPixmap(":/pix/laiva.png"));
106     shipImages.append(QPixmap(":/pix/laiva_1aave.png"));
107     shipImages.append(QPixmap(":/pix/laiva_2aave.png"));
108     shipImages.append(QPixmap(":/pix/laiva_3aave.png"));
109     shipImages.append(QPixmap(":/pix/laiva_4aave.png"));
110     shipImages.append(QPixmap(":/pix/laiva_5aave.png"));
111     shipImages.append(QPixmap(":/pix/laiva_6aave.png"));
112     shipImages.append(QPixmap(":/pix/laiva_7aave.png"));
113     shipImages.append(QPixmap(":/pix/laiva_8aave.png"));
114     shipImages.append(QPixmap(":/pix/laiva_9aave.png"));
115     shipImages.append(QPixmap(":/pix/laiva_10aave.png"));
116
117     Ship * pShip = new Ship (shipImages);
118     pShip->setData(0,"ship");
119     pShip->setPos(*pPosition);
120     addItem(pShip);
121     connect(pShip,SIGNAL(pickingGhost(QGraphicsItem*)),this, SLOT(removeGhost(QGraphicsItem*)) );
122     connect(pShip,SIGNAL(droppingGhosts(int)),this,SLOT(ghostsDropped(int)));
123     pShip->startMoving();
124     delete pPosition;
125 }
126
127
128 void SeaScene::spreadGhosts(int ghosts)
129 {
130     for (int i=0; i < ghosts; i++)
131     {
132         QPointF * pPosition = findRandomFreeSlot();
133
134         //If there was no room no point to continue
135         if (pPosition == NULL)
136             return;
137
138         QPixmap ghostPixmap(":/pix/aave.png");
139         QGraphicsPixmapItem * pGhost = addPixmap(ghostPixmap);
140         pGhost->setData(0,"ghost");
141         pGhost->setPos(*pPosition);
142         delete pPosition;
143     }
144 }
145
146 QPointF* SeaScene::findRandomFreeSlot()
147 {
148     if (freeTiles_.isEmpty())
149         return NULL;
150
151     int index = qrand()%freeTiles_.size();
152
153     qDebug()  << index << " index";
154     return new QPointF (freeTiles_.takeAt(index));
155
156 }
157
158 void SeaScene::removeGhost(QGraphicsItem *pGhost)
159 {
160     removeItem(pGhost);  //remove the item from scene
161     freeTiles_.append(pGhost->scenePos()); //add the item's position to free slots
162     delete pGhost;
163     ghostsLeft_--;
164     if (ghostsLeft_ == 0)
165     {
166         //here whatever happens when a level is complete / a signal
167         qDebug() << "All ghosts picked!";
168     }
169 }
170
171 void SeaScene::ghostsDropped(int ghosts)
172 {
173     ghostsLeft_ += ghosts;
174
175     spreadGhosts(ghosts);
176 }