Compare commits
3 Commits
8c4a515046
...
28c4b421d2
Author | SHA1 | Date | |
---|---|---|---|
28c4b421d2 | |||
13ce75067b | |||
635d71f1c5 |
@@ -19,3 +19,6 @@ cp "$BASE_DIR/build/pong" "$REL_DIR"
|
|||||||
# Remove the temporary file.
|
# Remove the temporary file.
|
||||||
rm "$BASE_DIR/tmp_file.txt"
|
rm "$BASE_DIR/tmp_file.txt"
|
||||||
|
|
||||||
|
#Zip the $REL_DIR folder
|
||||||
|
zip -r "$BASE_DIR/release/netpong-win.zip" "$REL_DIR"
|
||||||
|
|
2
main.cpp
2
main.cpp
@@ -38,7 +38,7 @@ const int PADDLE_SPEED = 8;
|
|||||||
const int CIRC_RAD = 10;
|
const int CIRC_RAD = 10;
|
||||||
const float BASE_BOUNCE_DEG = 45;
|
const float BASE_BOUNCE_DEG = 45;
|
||||||
const float BASE_BOUNCE_RAD = (BASE_BOUNCE_DEG / 180.0) * M_PI;
|
const float BASE_BOUNCE_RAD = (BASE_BOUNCE_DEG / 180.0) * M_PI;
|
||||||
const float BASE_SPEED_COMPONENTS = 18;
|
const float BASE_SPEED_COMPONENTS = 15;
|
||||||
const float BASE_SPEED = sqrt(powf(BASE_SPEED_COMPONENTS, 2) * 2);
|
const float BASE_SPEED = sqrt(powf(BASE_SPEED_COMPONENTS, 2) * 2);
|
||||||
|
|
||||||
typedef enum {M_SINGLE, M_CLIENT, M_SERVER} Mode;
|
typedef enum {M_SINGLE, M_CLIENT, M_SERVER} Mode;
|
||||||
|
1
todo.txt
1
todo.txt
@@ -1,5 +1,4 @@
|
|||||||
1. Try to make the ball go between screens.
|
1. Try to make the ball go between screens.
|
||||||
2. Reduce ball speed.
|
|
||||||
3. Add code to zip the dist/ folder inside the release_build script.
|
3. Add code to zip the dist/ folder inside the release_build script.
|
||||||
4. Sign Windows executable, to remove 'Unknown Publisher' warnings.
|
4. Sign Windows executable, to remove 'Unknown Publisher' warnings.
|
||||||
5. Remove debugging print statements.
|
5. Remove debugging print statements.
|
||||||
|
Reference in New Issue
Block a user