All Projects → PfAndrey → Supermariohd

PfAndrey / Supermariohd

Cross-platform HD remake of Super Mario Bros (NES, 1985) with original game mechanics

Labels

Projects that are alternatives of or similar to Supermariohd

Fna
FNA - Accuracy-focused XNA4 reimplementation for open platforms
Stars: ✭ 1,267 (+1041.44%)
Mutual labels:  gamedev
Love
LÖVE is an awesome 2D game framework for Lua.
Stars: ✭ 1,305 (+1075.68%)
Mutual labels:  gamedev
Indy Leaderboard
Example game leaderboard dApp utilizing EbakusDB on Ebakus blockchain
Stars: ✭ 103 (-7.21%)
Mutual labels:  gamedev
Unrealclr
Unreal Engine 4 .NET 5 integration
Stars: ✭ 1,275 (+1048.65%)
Mutual labels:  gamedev
Evennia
Python MUD/MUX/MUSH/MU* development system
Stars: ✭ 1,309 (+1079.28%)
Mutual labels:  gamedev
Engge
Open source remake of Thimbleweed Park's engine
Stars: ✭ 94 (-15.32%)
Mutual labels:  gamedev
Parrothunt
ParrotHunt - ThreeJS WebGL game (http://parrothunt.nergal.se)
Stars: ✭ 85 (-23.42%)
Mutual labels:  gamedev
Godot
Godot Engine – Multi-platform 2D and 3D game engine
Stars: ✭ 44,556 (+40040.54%)
Mutual labels:  gamedev
Ikemen Go
A open source fighting game engine that supports MUGEN resources.
Stars: ✭ 92 (-17.12%)
Mutual labels:  gamedev
Qake
Qake voxel-engine demo
Stars: ✭ 100 (-9.91%)
Mutual labels:  gamedev
Everpuzzle
Tetris Attack / Pokemon Puzzle style game written in Rust
Stars: ✭ 88 (-20.72%)
Mutual labels:  gamedev
Bgfx
Cross-platform, graphics API agnostic, "Bring Your Own Engine/Framework" style rendering library.
Stars: ✭ 10,252 (+9136.04%)
Mutual labels:  gamedev
Badsanta
BadSanta - Multiplayer HTML5 Game (http://santa.qake.se)
Stars: ✭ 97 (-12.61%)
Mutual labels:  gamedev
Admob Unity Plugin
👾 An extension for Unity3d to place AdMob banners in your Android games.
Stars: ✭ 86 (-22.52%)
Mutual labels:  gamedev
Godot 2d global illumination
2D Global Illumination shader in Godot.
Stars: ✭ 106 (-4.5%)
Mutual labels:  gamedev
Projectfieldwarning
Project: Field Warning is a community-made RTS game centered around lethal regiment and division-scale warfare.
Stars: ✭ 86 (-22.52%)
Mutual labels:  gamedev
Crown
The flexible game engine.
Stars: ✭ 1,320 (+1089.19%)
Mutual labels:  gamedev
Godot Rust
Rust bindings for GDNative
Stars: ✭ 2,024 (+1723.42%)
Mutual labels:  gamedev
Finisterra
Java game client and server based on the popular argentina MMORPG Argentum Online
Stars: ✭ 107 (-3.6%)
Mutual labels:  gamedev
Entitas Sync Framework
Networking framework for Entitas ECS. Targeted at turnbased games or other slow-paced genres.
Stars: ✭ 98 (-11.71%)
Mutual labels:  gamedev

SuperMarioHD

MARIO logo Cross-platform HD remake of Super Mario Bros. (NES, 1985).
Project was created for learning purposes only.
The game demo on the YouTube: https://youtu.be/RJ181cc_AMI

Windows

1. Install a C++11 compiler:
Visual Studio Community: https://visualstudio.microsoft.com/downloads/ or MinGW https://osdn.net/projects/mingw/releases/

2. Install Git:
https://git-scm.com/downloads

3. Install CMake:
https://cmake.org/download

4. Install OpenAL:
https://www.openal.org/downloads

5. Open git-bash and type:

git clone https://github.com/PfAndrey/supermariohd.git --recursive
cd supermariohd 
mkdir build && cd build
cmake ..
cmake --build . --config Release
./SuperMario

Ubuntu

1. install git cmake and g++

sudo apt-get -y install cmake git g++ 

2. install additional packets (OpenGL, OpenAL etc)

sudo apt-get -y install libx11-dev libudev-dev xorg-dev freeglut3-dev libalut-dev libvorbis-dev libflac-dev

3. download mario repo

git clone https://github.com/PfAndrey/supermariohd.git --recursive

4. build project

cd supermariohd
mkdir build && cd build
cmake ..
cmake --build . --config Release
./SuperMario

Mac OS

1. install xcode:
https://developer.apple.com/xcode/

2. Install Git:
https://git-scm.com/downloads

3. Install CMake:
https://cmake.org/download

4. build project
Go to terminal and type:

git clone https://github.com/PfAndrey/supermariohd.git --recursive
cd supermariohd
mkdir build && cd build
cmake ..
sudo cmake --build . --config Release
./SuperMario
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].