Skip to content

Commit

Permalink
Bumping version to 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
frranck committed Feb 6, 2018
1 parent 2635a3a commit 4002e22
Show file tree
Hide file tree
Showing 23 changed files with 370,219 additions and 312,795 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/tests export-ignore
.gitattributes export-ignore
.gitignore export-ignore
57,498 changes: 57,498 additions & 0 deletions Assets/ai.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Assets/mrboom.libretro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Libretro]
Type=Game
Version=4.1
Version=4.2
Name=MrBoom
Icon=mrboom
Module=mrboom_libretro.so
Expand Down
8 changes: 4 additions & 4 deletions Assets/mrboom.rc
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
id ICON "./mrboom.ico"
1 VERSIONINFO
FILEVERSION 4,1,0,0
PRODUCTVERSION 4,1,0,0
FILEVERSION 4,2,0,0
PRODUCTVERSION 4,2,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904E4"
BEGIN
VALUE "CompanyName", "Remdy Software"
VALUE "FileDescription", "MrBoom"
VALUE "FileVersion", "4.1"
VALUE "FileVersion", "4.2"
VALUE "InternalName", "mrboom"
VALUE "LegalCopyright", "Remdy Software"
VALUE "OriginalFilename", "MrBoom.exe"
VALUE "ProductName", "MrBoom"
VALUE "ProductVersion", "4.1"
VALUE "ProductVersion", "4.2"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ else
CXXFLAGS += -std=c++98
endif

ifneq ($(SCREENSHOTS),)
CXXFLAGS += -std=c++11 -Isdl2/xBRZ
endif

CFLAGS += $(INCFLAGS) -Wall -pedantic $(fpic)

ifneq (,$(findstring qnx,$(platform)))
Expand Down
3 changes: 2 additions & 1 deletion Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ SOURCES_C += $(LIBRETRO_COMM_DIR)/formats/bmp/rbmp_encode.c \
endif

ifneq ($(SCREENSHOTS),)
SOURCES_CXX += $(CORE_DIR)/tests/tests.cpp
SOURCES_CXX += $(CORE_DIR)/tests/tests.cpp \
$(CORE_DIR)/sdl2/xBRZ/xbrz.cpp
SOURCES_C += $(LIBRETRO_COMM_DIR)/formats/bmp/rbmp_encode.c \
$(LIBRETRO_COMM_DIR)/encodings/encoding_crc32.c
INCFLAGS += -DSCREENSHOTS
Expand Down
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,7 @@ It runs on all RetroArch platforms: Android, Linux, Mac Os X, Nintendo Gamecube

It can also be compiled as a stand-alone version using SDL2.

![alt tag](Assets/mrb0.png)
![alt tag](Assets/mrb1.png)

![alt tag](Assets/mrb2.png)
![alt tag](Assets/mrb4.png)

![alt tag](Assets/mrb5.png)
![alt tag](Assets/draw.gif)
![alt tag](tests/screenshots/mrboom-5.gif)

Mr.Boom supports up to 8 players and features like netplay, AI bots [(new C++ feature)](ai/), pushing bombs, remote controls and kangaroo riding...

Expand Down
7 changes: 5 additions & 2 deletions ai/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
![alt tag](bt.png)

Using a c++98 port of arvidsson's [behavior tree library](https://github.com/arvidsson/bt).
See [logs](../Assets/ai.txt).

![alt tag](../tests/screenshots/mrboom-0.gif)
![alt tag](../tests/screenshots/mrboom-1.gif)
![alt tag](../tests/screenshots/mrboom-2.gif)
Expand All @@ -6,6 +11,4 @@
![alt tag](../tests/screenshots/mrboom-5.gif)
![alt tag](../tests/screenshots/mrboom-6.gif)
![alt tag](../tests/screenshots/mrboom-7.gif)
![alt tag](bt.png)

Using a c++98 port of arvidsson's [behavior tree library](https://github.com/arvidsson/bt).
2 changes: 2 additions & 0 deletions common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,12 @@ bool mrboom_init()
#ifdef LOAD_FROM_FILES
char tmpDir[PATH_MAX_LENGTH];
snprintf(tmpDir, sizeof(tmpDir), "%s", "/tmp");
#ifndef __APPLE__
if (getenv("HOME") != NULL)
{
snprintf(tmpDir, sizeof(tmpDir), "%s", getenv("HOME"));
}
#endif
if (getenv("TMP") != NULL)
{
snprintf(tmpDir, sizeof(tmpDir), "%s", getenv("TMP"));
Expand Down
2 changes: 1 addition & 1 deletion common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
extern "C" {
#endif
#define GAME_NAME "Mr.Boom"
#define GAME_VERSION "4.1"
#define GAME_VERSION "4.2"
#define PATH_MAX_LENGTH 256
#define WIDTH 320
#define HEIGHT 200
Expand Down
557,883 changes: 278,873 additions & 279,010 deletions mrboom.c

Large diffs are not rendered by default.

Loading

0 comments on commit 4002e22

Please sign in to comment.