All Projects → naev → Naev

naev / Naev

Licence: other
Naev is a 2d action/rpg space game that combines elements from the action, rpg and simulation genres.

Programming Languages

c
50402 projects - #5 most used programming language
lua
6591 projects

Projects that are alternatives of or similar to Naev

Pioneer
A game of lonely space adventure
Stars: ✭ 979 (+103.11%)
Mutual labels:  game, simulator, space
Moonwards-Virtual-Moon
Development continues on Unreal, in the MoonwardsUE repository
Stars: ✭ 97 (-79.88%)
Mutual labels:  rpg, simulator, space
NASSP
Project Apollo - NASSP
Stars: ✭ 110 (-77.18%)
Mutual labels:  simulator, space
Thunder-Lightning
An Open Source Futuristic Action Flight Simulator Game Inspired By Carrier Command
Stars: ✭ 29 (-93.98%)
Mutual labels:  simulator, action
broken seals
An open source third person action RPG with multiplayer support.
Stars: ✭ 223 (-53.73%)
Mutual labels:  rpg, action
Stendhal
Stendhal is a fun friendly and free multiplayer online adventure game with an old school feel.
Stars: ✭ 194 (-59.75%)
Mutual labels:  game, rpg
Gdx Rpg
java & libgdx制作的RPG游戏! an RPG by java and LibGDX
Stars: ✭ 239 (-50.41%)
Mutual labels:  game, rpg
cas
Cellular Automata Simulator
Stars: ✭ 22 (-95.44%)
Mutual labels:  simulator, space
Newbark
🌳 A proof-of-concept Pokémon-style Retro RPG engine created with Unity.
Stars: ✭ 129 (-73.24%)
Mutual labels:  game, rpg
Sulis
Turn based tactical RPG with several campaigns, written in Rust
Stars: ✭ 338 (-29.88%)
Mutual labels:  game, rpg
Rakugo Archive
Framework (inspired by Ren'Py) for story driven games in Godot.
Stars: ✭ 291 (-39.63%)
Mutual labels:  game, rpg
Summer
这是一个支持分布式和集群的java游戏服务器框架,可用于开发棋牌、回合制等游戏。基于netty实现高性能通讯,支持tcp、http、websocket等协议。支持消息加解密、攻击拦截、黑白名单机制。封装了redis缓存、mysql数据库的连接与使用。轻量级,便于上手。
Stars: ✭ 336 (-30.29%)
Mutual labels:  game, rpg
Kotcity
KotCity, an open source city simulator
Stars: ✭ 462 (-4.15%)
Mutual labels:  game, simulator
Rpg Core
UNITY engine RPG framework
Stars: ✭ 146 (-69.71%)
Mutual labels:  game, rpg
SS3D
Space Station 3D, another remake of SS13, but with an extra D.
Stars: ✭ 180 (-62.66%)
Mutual labels:  simulator, space
Magicallife
A 2d game that aspires to be similar to Rimworld, with more depth, magic, and RPG concepts.
Stars: ✭ 145 (-69.92%)
Mutual labels:  game, rpg
Gascontent
Repo to gather all Gameplay Ability System content for UE4
Stars: ✭ 398 (-17.43%)
Mutual labels:  rpg, action
Cboe
Classic Blades of Exile
Stars: ✭ 115 (-76.14%)
Mutual labels:  game, rpg
Simplexrpgengine
Modular game engine built with MonoGame, with GMS2-like workflow and advanced level editor
Stars: ✭ 122 (-74.69%)
Mutual labels:  game, rpg
Aitrack
6DoF Head tracking software
Stars: ✭ 262 (-45.64%)
Mutual labels:  game, simulator

Nightly Release Status CI Status Packaging status Translation Status

NAEV README

Naev Logo

Naev is a 2D space trading and combat game, taking inspiration from the Escape Velocity series, among others.

You pilot a space ship from a top-down perspective, and are more or less free to do what you want. As the genre name implies, you’re able to trade and engage in combat at will. Beyond that, there’s an ever-growing number of storyline missions, equipment, and ships; Even the galaxy itself grows larger with each release. For the literarily-inclined, there are large amounts of lore accompanying everything from planets to equipment.

DEPENDENCIES

Naev's dependencies are intended to be relatively common. In addition to an OpenGL-capable graphics card and driver with support for at least OpenGL 3.1, Naev requires the following:

  • SDL 2
  • libxml2
  • freetype2
  • libpng
  • OpenAL
  • libvorbis >= 1.2.2
  • binutils
  • intltool

If you're cross-compiling for Windows, you must install this soft dependency:

  • physfs, example package name mingw-w64-physfs

Ubuntu

Install compile-time dependencies on Ubuntu 16.04 (and hopefully later) with:

apt-get install build-essential libsdl2-dev libsdl2-image-dev \
libgl1-mesa-dev libxml2-dev libfreetype6-dev libpng-dev libopenal-dev \
libvorbis-dev binutils-dev libiberty-dev autopoint intltool libfontconfig-dev \
python3-pip
pip3 install meson ninja

macOS

Warning: this procedure is inadequate if you want to build a Naev.app that you can share with users of older macOS versions than your own.

Dependencies may be installed using Homebrew:

brew install freetype gettext intltool libpng libvorbis luajit meson openal-soft physfs pkg-config sdl2_image suite-sparse

Building the latest available code in git is recommended, but to build version 0.8 you can add sdl2_mixer (and autoconf-archive and automake if using Autotools to build).

Meson needs an extra argument to find Homebrew's openal-soft package: --pkg-config-path=/usr/local/opt/openal-soft/lib/pkgconfig. If build may fail if suite-sparse is installed via Homebrew, citing an undefined reference to _cs_di_spfree. A workaround is to pass --force-fallback-for=SuiteSparse. (These arguments may be passed to the initial meson setup or applied later using meson configure. For 0.8/Autotools, set the PKG_CONFIG_PATH environment variable before running ./configure.)

Other *nix

See here for package lists for several distributions.

COMPILING

CLONING AND SUBMODULES

Naev requires the artwork submodule to run from git. You can check out the submodules from the cloned repository with:

git submodule init
git submodule update

Not that git submodule update has to be run every time you git pull to stay up to date. This can also be done automatically by setting the following configuration:

git config submodule.recurse true

COMPILATION

Run:

meson setup builddir .
cd builddir
meson compile
./naev.sh

If you need special settings you can run meson configure in your build directory to see a list of all available options.

For installation, try: meson configure --buildtype=release -Db_lto=true

For Windows packaging, try adding: --bindir=bin -Dndata_path=bin

For macOS, try adding: --prefix="$(pwd)"/build/dist/Naev.app --bindir=Contents/MacOS -Dndata_path=Contents/Resources

For normal development, try adding: --buildtype=debug -Db_sanitize=address (adding -Db_lundef=false if compiling with Clang, substituting -Ddebug_arrays=true for -Db_sanitize=... on Windows if you can't use Clang).

For faster debug builds (but harder to trace with gdb/lldb), try --buildtype=debugoptimized -Db_lto=true -Db_lto_mode=thin in place of the corresponding values above.

INSTALLATION

Naev currently supports meson install which will install everything that is needed.

If you wish to create a .desktop for your desktop environment, logos from 16x16 to 256x256 can be found in extras/logos/.

WINDOWS

See https://github.com/naev/naev/wiki/Compiling-on-Windows for how to compile on windows.

UPDATING ART ASSETS

Art assets are partially stored in the naev-artwork-production repository and sometimes are updated. For that reason, it is recommended to periodically update the submodules with the following command.

git submodule update

You can also set this to be done automatically on git pull with the following command:

git config submodule.recurse true

Afterwards, every time you perform a git pull, it will also update the artwork submodule.

TRANSLATION

Naev supports unicode and gettext since version 0.8.0.

ONLINE TRANSLATION

Naev is incorporated into Weblate. You can easily translate directly with a web interface to your chosen language at https://hosted.weblate.org/projects/naev/naev/ .

MANUAL TRANSLATION

If you are a developer, you may need to update translation files as text is modified. You can update all translation files with the following commands:

meson compile potfiles        # necessary if files have been added or removed
meson compile naev-pot        # necessary if translatable strings changed
meson compile naev-update-po  # necessary outside the main line, where Weblate handles it

This will allow you to edit the translation files in po/ manually to modify translations.

If you like, you can set up commmit hooks to handle the potfiles step. For instance:

# .git/hooks/pre-commit
#!/bin/bash
. utils/update-po.sh

# .git/hooks/post-commit
#!/bin/sh
git diff --exit-code po/POTFILES.in || exec git commit --amend -C HEAD po/POTFILES.in

CRASHES & PROBLEMS

Please take a look at the FAQ before submitting a new bug report, as it covers a number of common gameplay questions and common issues.

If Naev is crashing during gameplay, please file a bug report after reading https://github.com/naev/naev/wiki/Bugs

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].