Tagged Questions
A roguelike is usually a free turn-based computer game with a strong focus on intricate gameplay and replayability.
11
votes
11answers
4k views
What programming language would be best for creating a roguelike game?
With the interest of creating a roguelike RPG (such as Nethack, Rogue, and ADOM), which programming language would be most suitable and why?
With the language that you choose, be sure to list any ...
5
votes
4answers
323 views
Very simple RogueLike in F#, making it more “functional”
I have some existing C# code for a very, very simple RogueLike engine. It is deliberately naive in that I was trying to do the minimum amount as simply as possible. All it does is move an @ symbol ...
3
votes
3answers
230 views
Using of F# in a game engine
I'm currently creating a roguelike game and have already started coding in C# but have not coded much (<1000 lines) so far...
Now again, I have had a look at F# and this language seems to be very ...
3
votes
6answers
832 views
Pure Java text interface for a roguelike game
OK, this is going to sound like a crazy idea - but I'm interested in emulating a 1980s style roguelike game text interface in pure Java, i.e. using Swing or similar.
Here's roughly what it needs to ...
3
votes
2answers
388 views
Building a Roguelike in Silverlight (or WPF)
I've been toying with the idea of building a web-based Roguelike game using Silverlight (or maybe just a desktop game using WPF).
If you don't know what a Roguelike is, it's a type of graphical RPG ...
2
votes
1answer
86 views
an analogue of ncurses for JRuby running in browser?
I want to run in the browser a ruby application using ncurses.
To do that, I can use JRuby; but what do I replace ncurses with ?
I am thinking of running JRuby as an applet as decribed here. I have ...
2
votes
1answer
153 views
Keystrokes/Controls in libtcod and python?
In the Python/Libtcod tutorial on Roguebasin the basic code for controlling your character uses the up down left and right keys. Is there a way to make it use WSAD or any other keys? Libtcod only ...
2
votes
3answers
168 views
Having an instanced, derived class put a pointer to itself into an array?
Okay so here's a real mess of a question - I don't even entirely know what to search for.
I asked a question here, related to a game's entity handling system: [C++] Initiating a derived class with ...
2
votes
1answer
322 views
Roguelike FOV problem
I am working on a college compsci project and I would like some help with a field of view algorithm. I works mostly, but in some situations the algorithm sees through walls and hilights walls the ...
1
vote
4answers
78 views
Scala Console Get Keypress
I'm writing a roguelike in Scala. I need to be able to see when the user presses an arrow key for example. All of the solutions I have found require the player to press enter. Is there any way to ...
1
vote
3answers
63 views
Redrawing the screen and wiping what was already there
I need some help - I'm trying to create a roguelike using C++, and at the moment, I have a very simple little screen going, with a void() that generates a map, using "#" for walls and "." for floors. ...
1
vote
1answer
76 views
movement binding in c++ using ncurses
I can't get this movement binding to work. I'm using the ncurses library, update_ch and oldch are global variables. KEYERR is a macro set to -120 (I just don't handle those keypresses). I'm trying ...
0
votes
1answer
58 views
More sophisticated terminal I/O in Ruby
I'm trying to make a rouguelike game that runs inside a terminal using Ruby but I'm not exactly sure how to go about doing that. I want to be able to address and update each cell in the standard 80*24 ...
0
votes
1answer
99 views
Initiating a derived class with specific variable values
For the below code snippet, how do I initialize instances of class Enemy with variables (such as x, y, type)? I have it working correctly, it triggers the instances no matter how many of them I ...
0
votes
2answers
230 views
Coding a Roguelike: Help with entity array logistics
I am currently in the process of coding a roguelike, and teaching myself what I need as I go.
I am stuck on a problem which I found somewhat answered here:
Best way to organize entities in a game?
I ...
0
votes
1answer
161 views
Easy way to implement dropped items in rogue-like game?
Basically I have a rogue game I'm making, and am trying to implement dropped items for when the enemy dies. I've tried a couple different methods on how to do this, and none have been successful.
I ...
0
votes
4answers
540 views
How to create a 2D array of objects in Ruby?
I am creating a map for my roguelike game and already I stumbled on a problem. I want to create a two dimensional array of objects. In my previous C++ game I did this:
class tile; //found in another ...
0
votes
2answers
491 views
Best performance option for drawing from a sprite sheet using Java Swing
I'm creating a graphical roguelike game using Java. In the game, I'm painting a 2d array of Tile objects onto a JPanel. These Tile objects represent the ground. I have a .bmp sprite sheet that ...