jacobfrench / cs335_battlepong

0 stars 2 forks source link

BattlePong

BattlePong is an arena-like combat fighting game in which two players face off against each other in the form of Pong.

Members :

Functional Requirements

Unlike the origin Pong, the main of objective of BattlePong is to defeat your opponent by any means necessary. This can include...

Your score is based on the criteria of the following

The visual aesthic will pay homage to the old-style terminal computers in the 80s.

After the game loop ends, a backend script will insert the scores into a database. The top 10 scores will then be echo'ed to the terminal session.

Nonfunctional Requirements

TODOS

Coding Style

Indenting

Tabs, 2 spaces

Class Definitions

class MyClass {
 private:
    param1
    param2
 public:
    method1();
};

Function Definitions

function myFunc( param1, param2 ) {

}

Conditional Statements

if (true) {
 something();
} 
else {
 somethingElse();
}

Variable Definitions

int camelCase;
int CONSTANT_VARIABLE;

Keyboard Controls