Subversion Repositories QTron

Compare Revisions

Ignore whitespace Rev 1 → Rev 35

/ui_mainwindow.h
File deleted
/mainwindow.ui
File deleted
/bike.h
8,39 → 8,52
#include <iostream>
#include <QHostAddress>
#include <QThread>
#include <cmath>
#include <time.h>
#include <stdio.h>
#include <pthread.h>
 
using namespace std;
 
class Bike : public QThread
class Bike : public QObject
{
Q_OBJECT
Q_OBJECT
 
public:
Bike(QTcpSocket *sock, int i);
void draw(QPainter *painter);
void run(QList<Bike *> bikes);
void reset();
bool isReady;
bool dead;
bool show;
bool hadGo;
float x;
float y;
QString name;
int angle;
QList<QPoint> linePoints;
int id;
bool isDisconnected;
bool hasHadGo;
public:
Bike(QTcpSocket *sock, int i);
void draw(QPainter *painter,QList<Bike *> bikes);
void run();
bool hasCollided(QList<Bike *> bikes);
void setText(QString text);
void reset();
bool isReady;
bool dead;
bool show;
bool hadGo;
float x;
float y;
QString name;
int angle;
QList<QPoint> linePoints;
int id;
bool isDisconnected;
bool hasHadGo;
QList<Bike *> bikes;
QColor colour;
bool collided;
float abpool;
float velocity;
float speed;
 
private:
QTcpSocket *socket;
float velocity;
QColor colour;
private:
QTcpSocket *socket;
 
private slots:
void readyRead();
void disconnected();
private slots:
void readyRead();
void disconnected();
 
signals:
void chat(QString name, QString message);
};
 
#endif // BIKE_H
/mainwindow.h
6,37 → 6,36
#include <QTcpServer>
#include <QList>
#include <QTimer>
#include <QGLWidget>
 
 
#include "bike.h"
 
namespace Ui
class MainWindow : public QGLWidget
{
class MainWindow;
}
 
class MainWindow : public QMainWindow
{
Q_OBJECT
 
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
void reset();
public:
MainWindow(QWidget *parent = 0);
~MainWindow();
void reset();
 
protected:
void changeEvent(QEvent *e);
void paintEvent(QPaintEvent *e);
protected:
void paintEvent(QPaintEvent *e);
 
private:
Ui::MainWindow *ui;
QTcpServer *server;
QList<Bike *> bikes;
QTimer *timer;
int id;
private:
QTcpServer *server;
QList<Bike *> bikes;
QTimer *timer;
int id;
QTimer *suddenDeathTimer;
bool suddenDeath;
 
private slots:
void newConnection();
void checkClients();
void newConnection();
void checkClients();
void chat(QString name, QString message);
void activateSuddenDeath();
};
 
#endif // MAINWINDOW_H
/main.cpp
7,4 → 7,5
MainWindow w;
w.show();
return a.exec();
pthread_exit(NULL);
}
/bike.cpp
2,250 → 2,418
 
Bike::Bike(QTcpSocket *sock, int i)
{
socket = sock;
id = i;
socket = sock;
id = i;
 
connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead()));
connect(socket, SIGNAL(disconnected()), this, SLOT(disconnected()));
connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead()));
connect(socket, SIGNAL(disconnected()), this, SLOT(disconnected()));
 
isDisconnected = false;
isDisconnected = false;
 
x = rand() % 800;
y = rand() % 600;
linePoints.append(QPoint(x, y));
linePoints.append(QPoint(x, y));
x = rand() % 800;
y = rand() % 600;
linePoints.append(QPoint(x, y));
 
velocity = 1;
angle = 0;
name = "";
show = false;
isReady = false;
hadGo = false;
dead = false;
velocity = 1;
angle = (rand() % 4) * 90;
abpool = 0;
name = "";
show = false;
isReady = false;
hadGo = false;
dead = false;
collided = false;
speed = 5;
 
colour.setBlue(0);
colour.setRed(0);
colour.setGreen(0);
colour.setBlue(0);
colour.setRed(0);
colour.setGreen(0);
 
if (!socket->waitForReadyRead(2000))
{
socket->disconnectFromHost();
show = false;
isReady = true;
hadGo = false;
}
if (!socket->waitForReadyRead(2000))
{
socket->disconnectFromHost();
show = false;
isReady = true;
hadGo = false;
}
}
 
void Bike::draw(QPainter *painter)
void Bike::draw(QPainter *painter, QList<Bike *> bikes)
{
if (show)
{
painter->setPen(colour);
painter->setFont(QFont("sans", 12));
if (show)
{
painter->setPen(colour);
painter->setFont(QFont("sans", 12));
 
for (int i = 0; i < linePoints.count(); i++)
{
QPoint point1;
QPoint point2;
if (i == 0)
{
point1 = linePoints[0];
}
else
{
point1 = linePoints[i - 1];
}
for (int i = 0; i < linePoints.count(); i++)
{
QPoint point1;
QPoint point2;
if (i == 0)
{
point1 = linePoints[0];
}
else
{
point1 = linePoints[i - 1];
}
 
point2 = linePoints[i];
point2 = linePoints[i];
 
painter->drawLine(point1, point2);
}
painter->drawLine(point1, point2);
}
 
if (angle == 0)
{
y -= velocity;
}
else if (angle == 90)
{
x += velocity;
}
else if (angle == 180)
{
y += velocity;
}
else if (angle == 270)
{
x -= velocity;
}
if (!collided)
{
collided = hasCollided(bikes);
if (angle == 0)
{
y -= velocity;
}
else if (angle == 90)
{
x += velocity;
}
else if (angle == 180)
{
y += velocity;
}
else if (angle == 270)
{
x -= velocity;
}
if (angle == 0 || angle == 180)
{
painter->fillRect(x - 5, y - 15, 10, 30, colour);
}
else
{
painter->fillRect(x - 15, y - 5, 30, 10, colour);
}
painter->drawText(x, y - 20, name);
}
else
{
linePoints.clear();
}
 
if (angle == 0 || angle == 180)
{
painter->fillRect(x - 5, y - 15, 10, 30, colour);
}
else
{
painter->fillRect(x - 15, y - 5, 30, 10, colour);
}
 
painter->drawText(x, y - 20, name);
}
 
 
}
}
 
void Bike::run(QList<Bike *> bikes)
void Bike::run()
{
for (int i = 0; i < bikes.count(); i++)
{
Bike *bike = bikes[i];
if (bike->isReady && bike->show)
{
if (bike->dead)
{
socket->write("DEAD ");
socket->write(bike->name.toAscii());
socket->write("\n");
}
else
{
socket->write("BIKE ");
socket->write(bike->name.toAscii());
socket->write(" ");
socket->write(QString::number(bike->x).toAscii());
socket->write(" ");
socket->write(QString::number(bike->y).toAscii());
socket->write("\n");
}
}
}
for (int i = 0; i < bikes.count(); i++)
{
Bike *bike = bikes[i];
if (bike->isReady && bike->show)
{
if (bike->collided)
{
socket->write("DEAD ");
socket->write(bike->name.toAscii());
socket->write("\n");
}
else
{
socket->write("BIKE ");
socket->write(bike->name.toAscii());
socket->write(" ");
socket->write(QString::number(bike->x).toAscii());
socket->write(" ");
socket->write(QString::number(bike->y).toAscii());
socket->write(" ");
socket->write(QString::number(bike->colour.red()).toAscii());
socket->write(" ");
socket->write(QString::number(bike->colour.green()).toAscii());
socket->write(" ");
socket->write(QString::number(bike->colour.blue()).toAscii());
socket->write("\n");
}
}
}
 
if (dead)
{
show = false;
isReady = true;
hadGo = false;
dead = false;
}
linePoints.append(QPoint(x, y));
 
if (!dead)
{
socket->write("G\n");
socket->flush();
if (dead)
{
show = false;
isReady = true;
hadGo = false;
dead = false;
}
 
hadGo = false;
if (!socket->waitForReadyRead(2000))
{
socket->disconnectFromHost();
dead = true;
}
if (!hadGo)
{
socket->disconnectFromHost();
dead = true;
}
}
hasHadGo = true;
if (!dead)
{
socket->write("G\n");
socket->flush();
 
hadGo = false;
if (!socket->waitForReadyRead(10000))
{
socket->disconnectFromHost();
dead = true;
}
if (!hadGo)
{
socket->disconnectFromHost();
dead = true;
}
}
hasHadGo = true;
 
time_t result = time(NULL);
cout << result << ": Recieved next move from " << name.toStdString().c_str() << endl;
pthread_exit(NULL);
}
 
int sign(int x){
if(x > 0){
return 1;
}
if(x < 0){
return -1;
}
return 0;
}
 
bool Bike::hasCollided(QList<Bike *> bikes)
{
// Do collision detection here
// use linePoints
int i = linePoints.count() - 1;
if(linePoints[i-1].x() < 0 || linePoints[i-1].x() > 800 || linePoints[i-1].y() < 0 || linePoints[i-1].y() > 600)
return true;
if(linePoints[i].x() < 0 || linePoints[i].x() > 800 || linePoints[i].y() < 0 || linePoints[i].y() > 600)
return true;
int j, r;
Bike *bike;
for(r = 0; r < bikes.count(); r++)
{
bike = bikes[r];
int forsubtract = 1;
if(bike->name == name){
forsubtract = 3;
}
for(j = 0; j < bike->linePoints.count() - forsubtract; j++)
{
int jx = bike->linePoints[j].x();
int j1x = bike->linePoints[j+1].x();
int jy = bike->linePoints[j].y();
int j1y = bike->linePoints[j+1].y();
int ix = linePoints[i-1].x();
int i1x = linePoints[i].x();
int iy = linePoints[i-1].y();
int i1y = linePoints[i].y();
 
if(angle == 0){
iy += 1;
i1y -= 1;
}
if(angle == 90){
ix -= 1;
i1x += 1;
}
if(angle == 180){
iy -= 1;
i1y += 1;
}
if(angle == 270){
ix += 1;
i1x -= 1;
}
if(!(jx == j1x && i1x == ix) && !(jy == j1y && i1y == iy))
{
 
// If not parallel
if(jx == j1x)
{
// x equal
 
if(ix > jx && i1x < jx || ix < jx && i1x > jx)
{
if((sign(iy - jy) != sign(iy - j1y)))
return true;
}
}
if(jy == j1y)
{
 
if(iy > jy && i1y < jy || iy < jy && i1y > jy)
{
if((sign(ix - jx) != sign(ix - j1x)))
return true;
}
}
}
}
}
return false;
}
 
void Bike::setText(QString text)
{
socket->write(text.toAscii().data());
socket->flush();
}
 
void Bike::reset()
{
x = rand() % 800;
y = rand() % 600;
linePoints.clear();
x = rand() % 800;
y = rand() % 600;
linePoints.clear();
 
linePoints.append(QPoint(x, y));
linePoints.append(QPoint(x, y));
linePoints.append(QPoint(x, y));
 
velocity = 1;
angle = 0;
show = true;
isReady = true;
hadGo = false;
dead = false;
velocity = 1;
angle = 0;
abpool = 0;
show = true;
isReady = true;
hadGo = false;
dead = false;
collided = false;
speed = 5;
 
socket->write("RESET\n");
socket->write("RESET\n");
}
 
void Bike::readyRead()
{
while (socket->canReadLine())
{
QByteArray data = socket->readLine();
QString line = data.trimmed();
while (socket->canReadLine())
{
QByteArray data = socket->readLine();
QString line = data.trimmed();
 
if (line == "L")
if (line == "L")
{
angle -= 90;
 
if (angle >= 360)
{
angle -= 360;
}
if (angle < 0)
{
angle += 360;
}
if(velocity < speed)
velocity += 0.3;
else if(velocity > speed)
velocity -= 0.3;
if(abs(speed-velocity)<0.3)
velocity = speed;
if(abpool<10)
abpool += 0.2;
hadGo = true;
}
else if (line == "R")
{
angle += 90;
 
if (angle >= 360)
{
angle -= 360;
}
if (angle < 0)
{
angle += 360;
}
if(velocity < speed)
velocity += 0.3;
else if(velocity > speed)
velocity -= 0.3;
if(abs(speed-velocity)<0.3)
velocity = speed;
if(abpool<10)
abpool += 0.2;
hadGo = true;
}
else if (line == "A")
{
if(abpool > 0){
velocity += 0.1;
abpool -= 0.5;
} else {
if(velocity < speed)
velocity += 0.3;
else if(velocity > speed)
velocity -= 0.3;
if(abs(speed-velocity)<0.3)
velocity = speed;
}
hadGo = true;
}
else if (line == "D")
{
if(abpool > 0){
velocity -= 0.2;
abpool -= 0.5;
}
else {
if(velocity < speed)
velocity += 0.3;
else if(velocity > speed)
velocity -= 0.3;
if(abs(speed-velocity)<0.3)
velocity = speed;
}
hadGo = true;
}
else if (line == "N")
{
 
if(velocity < speed)
velocity += 0.3;
else if(velocity > speed)
velocity -= 0.3;
if(abs(speed-velocity)<0.3)
velocity = speed;
if(abpool<10)
abpool += 0.2;
hadGo = true;
}
else if (line.startsWith("NAME "))
{
name = line.remove(0, 5);
isReady = true;
show = true;
}
else if (line.startsWith("COLOUR "))
{
QStringList list = line.split(" ");
if (list.count() >= 2)
{
colour.setRed(list[1].toInt());
}
if (list.count() >= 3)
{
colour.setGreen(list[2].toInt());
}
if (list.count() >= 4)
{
colour.setBlue(list[3].toInt());
}
}
else if (line.startsWith("CHAT "))
{
linePoints.append(QPoint(x, y));
angle -= 90;
QString message = line.remove(0, 5);
 
if (angle >= 360)
if (!message.isEmpty())
{
angle -= 360;
emit chat(name, message);
}
if (angle < 0)
{
angle += 360;
}
hadGo = true;
}
else if (line == "R")
{
linePoints.append(QPoint(x, y));
angle += 90;
 
if (angle >= 360)
{
angle -= 360;
}
if (angle < 0)
{
angle += 360;
}
hadGo = true;
}
else if (line == "A")
{
linePoints[linePoints.size() - 1] = QPoint(x, y);
velocity += 0.1;
hadGo = true;
}
else if (line == "D")
{
linePoints[linePoints.size() - 1] = QPoint(x, y);
velocity -= 0.2;
hadGo = true;
}
else if (line == "N")
{
linePoints[linePoints.size() - 1] = QPoint(x, y);
hadGo = true;
}
else if (line.startsWith("NAME "))
{
name = line.remove(0, 5);
isReady = true;
show = true;
}
else if (line.startsWith("COLOUR "))
{
QStringList list = line.split(" ");
if (list.count() >= 2)
{
colour.setRed(list[1].toInt());
}
else if (list.count() >= 3)
{
colour.setGreen(list[2].toInt());
}
else if (list.count() >= 4)
{
colour.setBlue(list[3].toInt());
}
}
}
}
}
 
void Bike::disconnected()
{
dead = true;
isDisconnected = true;
cout << ":: Disconnected: " << socket->peerAddress().toString().toStdString() << endl;
dead = true;
isDisconnected = true;
cout << ":: Disconnected: " << socket->peerAddress().toString().toStdString() << endl;
}
/mainwindow.cpp
1,113 → 1,175
#include "mainwindow.h"
#include "ui_mainwindow.h"
 
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
QGLWidget(parent)
{
ui->setupUi(this);
this->setFixedSize(800, 600);
server = new QTcpServer(this);
connect(server, SIGNAL(newConnection()), this, SLOT(newConnection()));
server->listen(QHostAddress::Any, 4567);
 
this->setMinimumSize(800, 600);
this->resize(800, 600);
this->setMaximumSize(800, 600);
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(50);
 
server = new QTcpServer(this);
connect(server, SIGNAL(newConnection()), this, SLOT(newConnection()));
server->listen(QHostAddress::Any, 4567);
suddenDeath = false;
suddenDeathTimer = new QTimer(this);
connect(suddenDeathTimer, SIGNAL(timeout()), this, SLOT(activateSuddenDeath()));
suddenDeathTimer->start(300000);
 
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(update()));
timer->start(50);
 
id = 0;
id = 0;
}
 
MainWindow::~MainWindow()
{
delete ui;
delete server;
delete server;
}
 
void MainWindow::reset()
{
for (int i = 0; i < bikes.count(); i++)
suddenDeathTimer->stop();
suddenDeathTimer->start(300000);
suddenDeath = false;
 
for (int i = 0; i < bikes.count(); i++)
{
bikes[i]->reset();
}
}
 
void *runtherun(void *bike){
Bike *realbike = (Bike *)bike;
realbike->run();
pthread_exit(NULL);
}
 
void MainWindow::paintEvent(QPaintEvent *e)
{
if (suddenDeath)
{
bikes[i]->reset();
for (int i = 0; i < bikes.count(); i++)
{
bikes[i]->speed *= 1.01;
}
}
 
e->accept();
QPainter painter(this);
 
painter.fillRect(0, 0, 800, 600, Qt::white);
 
bool ready = true;
for (int i = 0; i < bikes.count(); i++)
{
if (!bikes[i]->isReady)
{
ready = false;
}
}
 
if (ready)
{
cout << ":: Sent move request..." << endl;
pthread_t threads[bikes.count()];
for (int i = 0; i < bikes.count(); i++)
{
if (bikes[i]->show)
{
bikes[i]->hasHadGo = false;
bikes[i]->bikes = bikes;
pthread_create(&threads[i],NULL,runtherun,(void *)bikes[i]);
}
}
Bike *bike;
foreach(bike,bikes)
{
while(!bike->hasHadGo)
{
}
}
 
for (int i = 0; i < bikes.count(); i++)
{
if (bikes[i]->show)
{
bikes[i]->draw(&painter,bikes);
}
}
}
 
checkClients();
}
 
void MainWindow::changeEvent(QEvent *e)
void MainWindow::newConnection()
{
QMainWindow::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
while (server->hasPendingConnections())
{
QTcpSocket *socket = server->nextPendingConnection();
Bike *bike = new Bike(socket, id);
connect(bike, SIGNAL(chat(QString,QString)), this, SLOT(chat(QString,QString)));
id += 1;
reset();
 
bikes.append(bike);
cout << ":: New Bike: " << socket->peerAddress().toString().toStdString() << endl;
}
}
 
void MainWindow::paintEvent(QPaintEvent *e)
void MainWindow::checkClients()
{
e->accept();
QPainter painter(this);
bool everyoneDied = true;
 
painter.setRenderHint(QPainter::Antialiasing, true);
for (int i = bikes.count() - 1; i >= 0; i--)
{
if (bikes[i]->isDisconnected)
{
for (int j = 0; j < bikes.count(); j++)
{
bikes[j]->setText(QString("DISCO ") + bikes[i]->name + QString("\n"));
}
 
bool ready = true;
for (int i = 0; i < bikes.count(); i++)
{
if (!bikes[i]->isReady)
delete bikes[i];
bikes.removeAt(i);
cout << ":: Removed Bike: " << i << endl;
}
else
{
ready = false;
if (!bikes[i]->collided)
{
everyoneDied = false;
}
else if (bikes[i]->dead)
{
everyoneDied = false;
}
}
}
}
 
if (ready)
if (everyoneDied)
{
for (int i = 0; i < bikes.count(); i++)
{
if (bikes[i]->show)
{
bikes[i]->hasHadGo = false;
bikes[i]->run(bikes);
bikes[i]->draw(&painter);
}
}
Bike *bike;
foreach(bike,bikes){
while(!bike->hasHadGo){
}
}
reset();
}
 
checkClients();
}
 
void MainWindow::newConnection()
void MainWindow::chat(QString name, QString message)
{
while (server->hasPendingConnections())
QString packet = "CHAT ";
packet.append(name);
packet.append(" ");
packet.append(message);
packet.append("\n");
 
for (int i = 0; i < bikes.count(); i++)
{
QTcpSocket *socket = server->nextPendingConnection();
Bike *bike = new Bike(socket, id);
id += 1;
reset();
 
bikes.append(bike);
cout << ":: New Bike: " << socket->peerAddress().toString().toStdString() << endl;
bikes[i]->setText(packet);
}
}
 
void MainWindow::checkClients()
void MainWindow::activateSuddenDeath()
{
for (int i = bikes.count() - 1; i >= 0; i--)
if (!suddenDeath)
{
if (bikes[i]->isDisconnected)
{
delete bikes[i];
bikes.removeAt(i);
cout << ":: Removed Bike: " << i << endl;
}
suddenDeath = true;
chat("Server", "SUDDEN DEATH ACTIVATED!");
}
}
/QTron.pro
1,7 → 1,7
# -------------------------------------------------
# Project created by QtCreator 2010-05-31T15:59:14
# -------------------------------------------------
QT += network
QT += network opengl
TARGET = QTron
TEMPLATE = app
SOURCES += main.cpp \
9,5 → 9,5
bike.cpp
HEADERS += mainwindow.h \
bike.h
FORMS += mainwindow.ui
FORMS +=
OTHER_FILES += docs.txt