12 Commits

Author SHA1 Message Date
3d9c211737 Bump version to v0.4 2026-03-03 09:37:47 +01:00
4e7e37821e Link to license file. 2026-03-03 09:32:08 +01:00
f520790f9c Change e-mail address. 2026-03-03 09:30:28 +01:00
44531ab24e Fix formatting of README.md 2026-03-03 09:28:44 +01:00
c1139ddb81 Change README to markdown. 2026-03-03 09:26:50 +01:00
da8d83de92 Remove fullscreen to-do item. 2026-03-03 09:23:36 +01:00
bc6881f851 Revert "Move global variables to main()."
This reverts commit b842bd0095.
2026-03-03 09:22:16 +01:00
b842bd0095 Move global variables to main().
Should not make variables global unnecessarily.
2026-03-03 09:20:50 +01:00
bb28285794 Fix possible precision loss by converting to float. 2026-03-03 09:20:00 +01:00
6621decc09 Add fullscreen mode support. 2026-03-03 09:19:16 +01:00
fd9fd453b3 Add help information for pause button. 2026-03-03 08:26:53 +01:00
b0f4f6849d Update CMake minimum required version to 3.10
This is needed to build with modern versions of CMake.
2026-03-03 08:21:01 +01:00
7 changed files with 94 additions and 61 deletions

View File

@@ -1,10 +0,0 @@
v0.1: First Release
- Basic simulation.
- Information printing.
v0.2: Menu Bar
- Added a menu bar.
- Can reset the simulation.
v0.3: Port to C
- Codebase ported to C for better performance.

21
CHANGELOG.md Normal file
View File

@@ -0,0 +1,21 @@
# Change Log
## v0.4: More functionality
- Fix acceleration.
- Add fullscreen support.
- Pause functionality.
## v0.3: Port to C
- Codebase ported to C for better performance.
## v0.2: Menu Bar
- Added a menu bar.
- Can reset the simulation.
## v1.0: First Release
- Basic simulation.
- Information printing.

View File

@@ -1,5 +1,5 @@
# Copyright (C) 2018 Ortega Froysa, Nicolás <nortega@themusicinnoise.net>
# Author: Ortega Froysa, Nicolás <nortega@themusicinnoise.net>
# Copyright (C) 2026 Ortega Froysa, Nicolás <nicolas@ortegas.org>
# Author: Ortega Froysa, Nicolás <nicolas@ortegas.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -14,11 +14,11 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.10)
project(SpaceShipSim C)
set(TARGET_NAME "spaceshipsim")
set(TARGET_VERSION "0.3")
set(TARGET_VERSION "0.4")
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "release")
@@ -48,8 +48,7 @@ set(SRCS
add_definitions(-DVERSION="${TARGET_VERSION}")
if(${CMAKE_BUILD_TYPE} STREQUAL "debug" OR
${CMAKE_BUILD_TYPE} STREQUAL "relwithdebinfo")
if(${CMAKE_BUILD_TYPE} STREQUAL "debug" OR ${CMAKE_BUILD_TYPE} STREQUAL "relwithdebinfo")
add_definitions(-DDEBUG)
else()
add_definitions(-DNDEBUG)

View File

@@ -1,39 +1,40 @@
====================
*** SpaceShipSim ***
====================
# SpaceShipSim
This is a small simulation program of a space ship (with infinite fuel) in a
frictionless environment (space). The idea is to use it for educational
purposes.
# Compiling
-----------
## Compiling
In order to build this program you will require the following dependencies:
- GNU GCC (https://gcc.gnu.org/)
- CMake (https://cmake.org/)
- Allegro 5 (http://liballeg.org/)
- A C compiler that supports C99 or higher
- CMake 3.10 or higher
- Allegro 5
You can then compile the program via the following commands:
```bash
cd build/
cmake ..
make
```
This will create a release build with compiler optimizations. If you would like
a debug build then pass the `-DCMAKE_BUILD_TYPE=debug' flag to the `cmake'
command. If you would like to install then run `cmake' with the additional flag
`-DCMAKE_INSTALL_PREFIX=<install_dir>'. If you are installing as a user then
you may want to set the installation prefix to `/usr/local/', and if you're
a debug build then pass the `-DCMAKE_BUILD_TYPE=debug` flag to the `cmake`
command. If you would like to install then run `cmake` with the additional flag
`-DCMAKE_INSTALL_PREFIX=<install_dir>`. If you are installing as a user then
you may want to set the installation prefix to `/usr/local/`, and if you're
packaging then please consult your distribution's policies. With this you
should be able to run the `make install' target and install the binary.
# Contributing
--------------
If you would like to contribute to the project, send a patch file to my e-mail
address: <nortega@themusicinnoise.net>.
## Contributing
If you would like to contribute to the project, send a patch file to my e-mail
address: [nicolas@ortegas.org](mailto:nicolas@ortegas.org).
## License
# License
---------
As educational software, unless otherwise noted, all files are licensed under
the terms & conditions of the GNU General Public License version 3 or greater
(see `LICENSE' file for more information).
(see the [license file](LICENSE) for more information).

1
TODO
View File

@@ -1,3 +1,2 @@
TODO:
- Add a fullscreen mode.
- Add presets with stellar masses (for gravity simulation).

View File

@@ -113,6 +113,8 @@ void handle_event() {
ALLEGRO_EVENT evnt;
al_wait_for_event(event_queue, &evnt);
do
{
switch(evnt.type)
{
case ALLEGRO_EVENT_TIMER:
@@ -136,6 +138,7 @@ void handle_event() {
set_key(evnt.keyboard.keycode, 0);
break;
}
} while(al_get_next_event(event_queue, &evnt));
}
int key_is_down(int code) {

View File

@@ -35,8 +35,10 @@ const char *help =
"LEFT/RIGHT - turn the ship\n"
"UP/DOWN - accelerate/reverse accelerate\n"
"R - reset the simulation\n"
"P - pause/unpause the simulation\n"
"I - show/hide simulation information\n"
"H - show/hide this help information\n"
"F - toggle fullscreen\n"
"Q/ESC - quit";
const char *info_format =
@@ -106,6 +108,7 @@ int main() {
show_info = 1;
int paused = 0;
int old_paused = 0;
int just_toggled_fullscreen = 0;
while(run)
{
handle_event();
@@ -126,6 +129,23 @@ int main() {
ship_update(&ship);
}
if (key_is_down(KEY_FULLSCREEN) && !just_toggled_fullscreen)
{
if(al_get_display_flags(display) & ALLEGRO_FULLSCREEN_WINDOW)
{
al_set_display_flag(display, ALLEGRO_FULLSCREEN_WINDOW, 0);
}
else
{
al_set_display_flag(display, ALLEGRO_FULLSCREEN_WINDOW, 1);
}
just_toggled_fullscreen = 1;
}
else if (!key_is_down(KEY_FULLSCREEN) && just_toggled_fullscreen)
{
just_toggled_fullscreen = 0;
}
al_clear_to_color(al_map_rgb(0, 0, 0));
ship_draw(&ship);
if(show_info)
@@ -147,7 +167,7 @@ int main() {
{
al_draw_multiline_text(font,
al_map_rgb(0xFF, 0xFF, 0xFF),
WINDOW_WIDTH / 2, WINDOW_HEIGHT / 2 - 50,
(float)WINDOW_WIDTH / 2, (float)WINDOW_HEIGHT / 2 - 50,
WINDOW_WIDTH, 10.0f,
ALLEGRO_ALIGN_CENTRE,
help);