Difference between revisions of "Android"

From RogueBasin
Jump to navigation Jump to search
(added Voyage to Farland)
(Added Revengate)
(12 intermediate revisions by 11 users not shown)
Line 5: Line 5:
Roguelikes available for Android include:
Roguelikes available for Android include:


* [[Ananias]], designed from the ground up for mobile devices
* [[Angband]] has an Android port
* [[Bounty Hunter Space Lizard]], a casual roguelike similar to Hoplite
* [[Central Park Nanotech Warlex]], a free casual post-apocalyptic coffeebreak roguelike
* [[Dungeon Crawl]]
* [[Dweller]], an old roguelike designed primarily for mobile devices
* [[Gone Rogue]]
* [[Hydra Slayer]] fails to start or function correctly with new Android version
* [[Hyperbolic Rogue|HyperRogue III]]
* [[Legends of Yore]], a commercial roguelike designed primarily for mobile devices
* [[Legends of Yore]], a commercial roguelike designed primarily for mobile devices
* [[Dweller]], an old roguelike designed primarily for mobile devices
* [[Lost Cavern]], a Sci-Fi roguelike with destructible environment for Android
* [[Mysterious Castle]], a party based isometric roguelike with tactical battles
* [[NetHack]] has an Android port
* [[Pixel Dungeon]], a coffee-break roguelike for Android
* [[POWDER]] does not have a native Android port, but can be played under a GameBoy Advance emulator (e.g., GameBoid)
* [[POWDER]] does not have a native Android port, but can be played under a GameBoy Advance emulator (e.g., GameBoid)
* [[Hydra Slayer]]
* [[Revengate]], a steampunk roguelike with touch-friendly controls is available for Android
* [[Hyperbolic Rogue|HyperRogue III]]
* [[NetHack]] and [[Angband]] have Android ports
* [[Voyage to Farland]], an Android-exclusive Mystery Dungeon style roguelike
* [[Voyage to Farland]], an Android-exclusive Mystery Dungeon style roguelike


* see more on [http://roguetemple.com/irldb/index.php?i=5451bc&plat=droid IRLDb]
* see more on [http://roguetemple.com/irldb/index.php?i=5451bc&plat=droid IRLDb]
Line 22: Line 31:
== Android development ==
== Android development ==


Android applications (.apk) are written in [[Java]] (you need the Android SDK). It is also possible to use JNI (Java Native Interface) to have a Java frontend communicating with a game written in a language such as [[C]] or [[C++]] (you need the Android NDK for that). This allows one to port traditional C/C++ roguelikes to Android. This trick is used by several games mentioned above ([[NetHack]], [[Angband]], [[Hydra Slayer]], [[Hyperbolic Rogue]]).
Android applications (.apk) are written in [[Java]] (you need the Android SDK). It is also possible to use JNI (Java Native Interface) to have a Java frontend communicating with a game written in a language such as [[C]] or [[C++]] (you need the Android NDK for that). This allows one to port traditional C/C++ roguelikes to Android. This trick is used by several games mentioned above ([[NetHack]], [[Angband]], [[Hydra Slayer]], [[Hyperbolic Rogue]], [[Dungeon Crawl]]).
 
[[Category:Systems]]

Revision as of 03:04, 20 July 2024

Android is a popular Linux-based operating system for mobile devices such as smartphones and tablet computers, developed by Google and other companies.

Available roguelikes

Roguelikes available for Android include:

Designing roguelikes for Android

There are many different kinds of Android devices. Some of them have keyboards and/or a large number of hardware buttons (which can be used e.g. for directional movement), but some have only touchscreens and the most basic hardware buttons. Therefore it is good to make them playable with as simple control system as possible. Traditional roguelikes use lots of keyboard command and they are hard to play on Android, although there are ports of NetHack and Angband available.

Android development

Android applications (.apk) are written in Java (you need the Android SDK). It is also possible to use JNI (Java Native Interface) to have a Java frontend communicating with a game written in a language such as C or C++ (you need the Android NDK for that). This allows one to port traditional C/C++ roguelikes to Android. This trick is used by several games mentioned above (NetHack, Angband, Hydra Slayer, Hyperbolic Rogue, Dungeon Crawl).