A roguelike is usually a free turn-based computer game with a strong focus on intricate gameplay and replayability.

learn more… | top users | synonyms

0
votes
1answer
47 views

Java Roguelike class and subclass structure for scheduler and actors

As a learning progression for JAVA inheritance I have put together a scheduler class and actor class. The scheduler class creates a list of actor objects and progresses through them calling on the ...
0
votes
1answer
99 views

Why is my virtual method being skipped over in C++?

Long story short: The program I'm working on is a rogue like - even though that isn't really needed for this question. Here's the hierarchy tree for my classes related to this question: ...
1
vote
3answers
90 views

C: Roguelike map is screwy

I'm making a Roguelike game in C, and I can't get my character to move in the way I want it to. I made a 2D char array with the character on it at point (x, y), drew the array, and changed the x and y ...
-7
votes
1answer
178 views

I need tips for generating roguelike “dungeons” [closed]

It am supposed to "randomly" generate the tunnels on a 79x20 grid that contains several "rooms". I created several functions that essentially draw a single tunnel. I created a function that random ...
1
vote
1answer
101 views

How to make a font sheet(for use in python roguelike)

I have continued making progress on my python roguelike, and dived further into this tutorial: ...
1
vote
2answers
103 views

Items in a 2d tile based game

I am making a 2d tile based game in Java, and I was wondering what the best way to store items in the world was. In the past i have always used an array the same size of the world but I want to make ...
0
votes
1answer
88 views

Python Roguelike: Inventory Disappears

Today I progressed further into this Python roguelike tutorial, and got to the inventory. As of now, I can pick up items and use them. The only problem is, when accessing the inventory, it's only ...
0
votes
2answers
87 views

Python Roguelike: Background Issue

I'm following a tutorial on making a roguelike in python, and it's actually coming along pretty nice. However, I have come to a small graphical issue: for the player and enemies, they all have a black ...
0
votes
1answer
71 views

A class system for Roguelike [closed]

What would be a good way to implement a race system similar to Roguelike in Java. I have been thinking about making each creature a subclass of it's race but I'm not sure this is a good way to do ...
0
votes
2answers
80 views

How could I implement body parts in a Java roguelike game [closed]

I am making a Roguelike game in java, and I want every creature to have bodyparts (as in Dwarf fortress). I was just wondering what the best way to implement this might be.
1
vote
1answer
36 views

Design outline for console rouglike interface

I am looking for a way to organize the interface following the rougelike pattern (term borrowed from The Art of Unix Programming by Eric S. Raymond), which is basically similar to that of vim, links ...
1
vote
1answer
199 views

Texturing troble on imported, tile based map on Unity

I'm trying to develop a rogue-like game in unity. Because of this, I need a tile-based map. Thanks to this tutorial, I've created a 9x9 square tiled map easily. ...
1
vote
1answer
161 views

Python / LibTCOD - libtcod.console_wait_for_keypress(True) triggering twice for each input

I'm going through the Roguebasin python/libtcod roguelike tutorial. The problem I encounter is, every time key = libtcod.console_wait_for_keypress(True) is called, the main loop fires off not one, but ...
0
votes
5answers
149 views

Writing anywhere in a DOS window

I'm looking for a way to show a "DOS" output in a Roguelike fashion, ie. it loks like you have a DOS window filled with characters (the level) which can change or move when the user pushes buttons, ...
3
votes
1answer
171 views

Dynamically Generating Roguelike Dungeons with Haskell and Repa

Similar question found here I am working on a roguelike game written in Haskell. I've decided to represent the world as a 2D grid using Data.Array.Repa, now I wish to dynamically generate random ...
1
vote
1answer
101 views

C++ Non-Class member compile error in Code::Blocks?

I am attempting to follow the tutorial found here to learn the basic idea behind programming roguelike game. I am using Code::Blocks 10.05 running portable from my usb and compiling with MinGW. ...
2
votes
1answer
394 views

Java and Swing with a game loop

(Not so) short question here. I am working on making a simple roguelike using Swing as the UI rather than the console (Which makes it easier to work with in Eclipse, among other things) but I seem to ...
2
votes
2answers
70 views

Using KeyStroke for input, is there an easier way of reading A - Z keys?

First of all, this isn't for a keylogger, it's for an input in a roguelike game where the JLabel in my JFrame will say "Name: " and I want to be able to type A-Za-z. After having a look at lots of ...
1
vote
2answers
164 views

Is this a design pattern? If so, what is its name?

I'm currently developing a turn-based RPG (a rogue-like) in C++ and I have created a neat architecture in my code that looks like some design pattern because I remember having seen code structured ...
1
vote
1answer
345 views

What is the best way to display ASCII in a grid with panels using Java?

I don't have much experience in Java, but I am attempt to write a simple rogue-like game to familiarize myself with it, and I am just wondering how I would go about creating an interface like this: ...
0
votes
1answer
423 views

Data structure for roguelike map

I need a data structure for map in rogue like game Each cell should contain array of objects. Map will have big dimensions, but contents of cell with specified coordinates should be accessible very ...
0
votes
1answer
154 views

Best form of IPC for a decentralized roguelike?

I've got a project to create a roguelike that in some way abstracts the UI from the engine and the engine from map creation, line-of-site, etc. To narrow the focus, i first want to just get the UI ...
1
vote
1answer
116 views

Creating a room for a dungeon gives wrong dimensions/no walls

I'm using Python 2.7 libtcod to make a Roguelike, and currently trying to get a function to create an individual room based on a given floor number, x1, x2, y1, and y2 set of coordinates. The expected ...
1
vote
4answers
478 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
129 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. ...
4
votes
1answer
150 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 ...
0
votes
1answer
141 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 ...
2
votes
1answer
490 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 ...
1
vote
1answer
183 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 ...
3
votes
3answers
403 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 ...
2
votes
3answers
227 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 ...
0
votes
1answer
135 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
459 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 ...
3
votes
1answer
839 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
1answer
276 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 ...
9
votes
6answers
2k 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 ...
5
votes
4answers
614 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 ...
0
votes
4answers
3k 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
707 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 ...
3
votes
3answers
777 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 ...
14
votes
11answers
6k views

What programming language would be best for creating a roguelike game? [closed]

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