B4rabbas / Ikemen-GO

A open source fighting game engine that supports MUGEN resources.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ikemen GO

IKEMEN Go is a remake of the IKEMEN (open source fighting games engine that supports M.U.G.E.N resources) in Google’s Programming Language “Go”.

Installing

For now automated build from AppVeyor can be found at:
https://ci.appveyor.com/project/Windblade-GR01/ikemen-go
Inside the artifacts tab. Installation bundles will be provided in the future.

If you need to install OpenAL dependencies, for windows, look at https://kcat.strangesoft.net/openal.html.
For other platforms, use the respective package manager.

Running

On windows, execute Ikemen_GO.exe

On mac/linux, double-click on Ikemen_GO.command

Developing

These instructions are for those interested in developing the Ikemen_GO engine. Instructions on contributing with custom stages, fonts, characters and other resources can be found in the community forum.

Building on Windows

Prérequis :

Télécharger MSYS2
https://www.msys2.org
Modifier les variables d'environnement
dans start menu tapez "env" et choisissez
"Modifier les variables d'environnement pour votre compte"
Allez dans l'onglet "Paramètre système avancés"
et cliquez sur "Variables d'environnement..."
Dans le cadre du bas "Variables systèmes" selectionnez la variable "Path" dans la liste et cliquez sur "Modifier..."
Dans la nouvelle fenêtre cliquez sur "Nouveau"
et copiez/collez
C:\msys64\mingw64\bin
refaites un deuxième fois l'opération avec
C:\msys64\usr\bin
Cliquez sur "OK" pour fermer toute les fenêtres
Redémmarez
(Pour verifier le path dans le powershell tapez "$env:PATH")

Dans un terminal en admin tapez
pacman -S mingw-w64-x86_64-gcc

Téléchargez
openal-soft-1.20.1-bin.zip
ici
https://openal-soft.org/openal-binaries/openal-soft-1.20.1-bin.zip
Décompessez le contenu de \include\ (le dossier AL) de l'archive dans
C:\msys64\mingw64\include
Décompessez le fichier libOpenAL32.dll.a se trouvant dans \libs\Win64\ de l'archive dans
C:\msys64\mingw64\lib

Installez Go-lang
https://golang.org/doc/install?download=go1.15.6.windows-amd64.msi
lancez l'installateur et attendez que le bouton "Next" soit disponible et lancez l'installation

Installez Git
https://git-scm.com/download/win
'clic droit' sur "Git-2.30.0-64-bit.exe" et "Exécuter en tant qu'administrateur"
cliquez "Next >" jusqu'à la fenêtre "Adjusting your PATH environment"
choisissez "Use Git and optional Unix tools from the Command Prompt"
puis cliquez "Next >" jusqu'à la fin de l'installation
Compilation
lancez
C:\msys64\mingw64.exe

et

git clone https://github.com/Windblade-GR01/Ikemen-GO.git

le git sera téléchargé dans
C:\msys64\home

allez dans
C:\msys64\home\yourname*\Ikemen-GO\build
et lancez "get.cmd" attendez de voir "Appuyez sur une touche pour continuer...", cela prend du temps
puis
lancez "build.bat"

L'executable se trouvera dans "C:\msys64\home\yourname*\Ikemen-GO\bin"

Building on Mac

Check the insturctions here

Building on Linux

Check the instructions here

Debugging

Download the Mugen dependencies and unpack them into the Ikemen_GO source directory. Then, use Goland or Visual Studio Code to debug.

Cross-compiling binaries with docker (linux/windows/mac)

The easiest way to compile binaries for other platforms is with docker.
You don't need the native development environment set to be able to build binaries if you decide to use docker.
The image downloaded has all required tools to compile Ikemen_GO for all the three platforms.

Install docker for your platform. For mac, you can install using homebrew (brew cask install docker).

Open a terminal, go to Ikemen source directory folder and then run the script build_docker.sh
Look inside the script for details on how it works.

Preparing for release

Before generating the installation bundle, first make sure that the binaries for Ikemen_GO are properly generated.
Download and install InstallBuilder.
Once finished, open the program, then open the file releaseconf.xml.
Click in Build.
For other platforms, select the target platform then click in build.

You may edit releaseconf.xml or use the InstallBuilder wizard to customize the installer.

NOTE: InstallBuilder is free for opensource projects. But you need to get a license for it.
Do not include copyrighted dependencies in the bundle.

Features added since Mugen

Refer to the wiki article Details of new features to see new features added that are not available in Mugen 1.1 and bellow.

References

Suehiro repo (Original creator of the engine)
https://osdn.net/users/supersuehiro/pf/ikemen_go/

Ikemen GO Plus, K4thos fork of Ikemen (Some features were borrowed from his repo)
https://github.com/K4thos/Ikemen-GO-Plus

What I.K.E.M.E.N means.

Ikemen is an acronym of:
Itumademo Kanseishinai Eienni Mikansei ENgine

Licence

MIT Licence

About

A open source fighting game engine that supports MUGEN resources.

License:MIT License


Languages

Language:Go 98.9%Language:Shell 1.0%Language:Batchfile 0.1%