Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1] 2 3 ... 72

Author Topic: The Roguelike Development Megathread  (Read 238822 times)

Dasleah

  • Bay Watcher
    • View Profile
The Roguelike Development Megathread
« on: January 23, 2009, 03:21:52 am »

[size=8]The Roguelike Development Megathread[/size]

Please note that this thread is not complete, and anything that any of you want to add to it, please feel free to say so - just IM me with what you want to add, or post it in this thread, and I'll update this post accordingly - with credit, of course.

So, as lovers of Dwarf Fortress, I suspect the roguelike genre is close to many of our hearts. We see those scampering little ASCII characters and we see... something more. We don't play these games because they justify the hundreds if not thousands of dollars we've spent on graphics cards. We play these games because they favour gameplay over graphics, unpredictability over the same-old same-old - but at the end of the day, there's just something about roguelikes, beyond words, that we just find irresistible.

Of course, as much as we love roguelikes, I'm sure we all have a list of things that we feel they just get 'wrong'. And what's the best way to fix something you don't like - complain and whine about it, spam the developers, abandon the project until your demands are met? No! The saying goes, if you want something done right, do it yourself, so why not? We've all got some great ideas inside us, so why not pony up and do something about it? So that's what this thread is about - a reference thread, a resource thread, a discussion thread - a thread that marks your rise as the developer of the next bit thing in roguelikes.

Languages

Now, what is a programming language? Well, it's what you will write your roguelike in. It's a defined set of words, structures, and methods for describing what you want to do, and how you want to do it. Every language does things differently for different reasons, and the sheer number of languages out there means that eventually you'll come across something that just feels right to you - and that's the language you want to use. Every language as their pros and cons, but at the end the day, the language that you feel comfortable using and does what you want it to is the best language. Don't listen to fanboys (or fangirls) trying to belittle you for your choice. Find something that works for you, and use it.

Python
Now I have to admit a fair amount of bias for Python. I love the language and it's what I've coded most in over the course of my life. So, naturally I can't be expected to give a fair overview of it. Here's a quote from the official website:

Python is an interpreted, interactive, object-oriented programming language. It incorporates modules, exceptions, dynamic typing, very high level dynamic data types, and classes. Python combines remarkable power with very clear syntax. It has interfaces to many system calls and libraries, as well as to various window systems, and is extensible in C or C++. It is also usable as an extension language for applications that need a programmable interface. Finally, Python is portable: it runs on many Unix variants, on the Mac, and on PCs under MS-DOS, Windows, Windows NT, and OS/2.

Basically, Python is the language you want to learn. It's clean, it's simple, and it cares more about programming well that learning convoluted syntax. And it's powerful enough to do almost anything.

General Python Resources:
  • Pygame
  • Implementations such as IronPython (.NET) and Jython (Java)
  • Curses for Windows and Python - note that I was never able to get this working, but that may just be a case of 'hurp de durp' on my part.
  • Boo is not technically Python, but it fits in here because it's designed to be as much like Python as makes sense. It's .NET compatible and offers the rather sexy option of compiling to an .exe, which in itself is a very attractive feature.

Ruby
Ruby is a scripting language, much like Python. It's been making the rounds for a few years now, and has really made waves in the web development circuit with developments such as Ruby on Rails. Don't let that fool you though, as it's a perfectly capable language for desktop development. The main drawback with Ruby for game development is the noticeable speed decrease - although with traditional turn-based roguelike gameplay, this point fades away, and even further when you dig a little deeper and see the marked speed increase in coming versions.

General Ruby Resources:

Lua

Quote from: rjek from irc://irc.freenode.net/lua
It's lightweight, dependancy-free, easily embedded into existing code bases, fast, efficient, easy to learn for programmers and non-programmers alike.

Lua is becoming a very popular language to utilise in the roguelike community. It is either use as a seperate scripting language for events and content alongside another language, as in Angband and H-World, or it is used to create the game in it's entirety, like future versions of ToME. It is much like Python and Ruby, only entirely different.

General Lua Resources
  • LÖVE is a Lua 2D game engine. You should check it out for the sheer fact that the site's image banner includes the phrase 'weeeee rainbows' which is awesome.
  • lua-curses is the only information I can find about a port of ncurses to Lua, so be wary about how reliable it is. The homepage of the author is dead, too, but the files are sitting there in SVN.
  • ToMEs forum on Lua.

Darkbasic
Darkbasic has one very important point going for it - whilst most languages in this list are general purpose, designed to be able to do anything and everything, Darkbasic is designed first and foremost to do games. This focus alone means that it natively supports things that other languages don't include by default, which can make development and learning much easier.

General Darkbasic Resources:

Perl
Perl is apparently known as the 'Swiss Army Chainsaw' of programming languages, and the wide-spread and comprehensive use of it in many different environments certainly lends credence to this claim. Of course, this also comes with the claim that Perl is more 'practical' than 'beautiful', which means that it errs on the side of complexity more than anything. While it may not be the best starting language for a beginner, those willing to persevere and practice will find many powerful options at their fingertips.

General Perl Resources:

Java
Java is a very popular language that is common amongst both professionals and beginners. One of it's greatest strengths is it's cross-platform nature, meaning that you generally only have to write the program once and it'll run the same on any platform that has the run-time environment installed.

General Java Resources:
  • JCurses - this version of JCurses has been abandoned, but I'm leaving the link up here for the sake of history. A much upgraded and much improved version is part of the libjcsi project, listed below, so I suggest checking that out.
  • libjcsi is a console library for Java that has a number of different bases to work off, not just JCurses.
  • serf-engine is a framework for Java roguelikes.

C#
Csharp is the 'next big thing' from Microsoft. To be cruel, one could easily call it Microsoft Java and be on your merry trolling way. However, to write it off as such would really undermine just how useful and sexy the language is. Of course, many people will still see it, and note the close ties it has to other Microsoft products such as DirectX, and leave it alone, but it truly is worth a look, especially considering that Microsoft themselves have a wealth of documentation available, in addition to professional IDEs for developing in.

General C# Resources:

C++
C++ is arguably one of the most powerful, popular, and influential programming languages you're likely to encounter. It is used in some capacity in nearly every commercial application you use, and the wealth of documentation for it means that should you choose to learn it, you'll have plenty of material to study from. However, it's also one of the more complicated languages, to the point where many a bright-eyed and hopeful beginner has been dashed to pieces against it.

General C++ Resources

C
General C Resources

Common Lisp
Yep, don't know much here. Anyone care to fill in the blanks?

General Common Lisp Resources

FreePascal
FreePascal is becoming a very popular language to write roguelikes in. And... uh, yeah. GearHead is written in Pascal. I might go poke around there for some more info.

Flash / Actionscript
Flash is the most popular environment for developing interactive web-based applications. I guarantee you that you've played dozens of Flash games in the past year and been on thousands of websites that use the technology for everything from forums to banner ads. This almost total penetration of Flash means that it is a very seductive language to begin development in. In addition, the sheer popularity of it means that you have hundreds of thousands of tutorials and examples to work from, and many helpful communities. Actionscript, the Javascript(ish) language that Flash uses for the more detailed and involved applications, is also extremely powerful and offers almost all the features of other, more developed languages.
This, however, comes at a cost - a cost to Adobe. Flash is proprietary product, which means if you want to use it, there's not a lot of options to do so without crossing wallets with Adobe at some point. Additionally, Flash uses a timeline based approach to programming, which is radically different approach to most other languages.

General Flash / Actionscript Resources

Javascript
Now, if you would of told me 5 years ago that you wanted to code a game - any game - in Javascript, I would of glared at you with equal amounts of contempt, scorn, and sorrow. Simply put, the langauge just wasn't consistant or fast enough to do anything, and was far too often associated with script-kiddies and amatuers to be taken seriously by the web design community at large.
These days, however, it's an entirely different thing. Perhaps spurned along by the development of its most famous derivative, Actionscript, Javascript (or ECMAscript if you want to get all fancy) has really come along in huge leaps and bounds in the past few years. Browsers have for the past generation been really focusing on their Javascript engines, and the performance difference from even 6 months ago can be many orders of magnitude faster - and certainly many hundreds of times faster than 5 years ago.

So why use Javascript for a roguelike? Well, it's certainly a very widespread language - it's one of the few programming languages that every OS supports by virtue of the fact that every OS comes with a web browser. It's also a relatively stable and mature language, meaning that plenty of documentation is available.

So why shouldn't you use Javascript for a roguelike? Even in this day and age, browser incompatibility is still the big hairy goblin that breathes down the neck of every web developer. The differences between writing Javascript applications for Firefox or Internet Explorer is minor, and if you know what you're doing are easily avoided, but are often the source of much frustration between both amateur and over-worked developers. Additionally, it may take another year or more for all browsers to include the new generation of fast Javascript engines, so be aware that performance between browsers may be spotty. And because of the horrors of years past, quite a few of the more paranoid users out there have Javascript (or at least select elements of it) turned off for fear of malicious intent, spyware, and other nasty exploits.

General Javascript Resources

Processing
Processing is a visual prototyping and rapid development language, which means the entire aim of it is to get something on screen fast. It's Java-based but differs enough to warrant calling it a different language. It's primarily designed around catering to visual artists and the general artistic community who need to learn to program - this also makes it a wonderful language for beginners to use, as the ability to quickly see what you're coding come alive in front of you is great motivation, unlike other languages that can take forever to go from code to play.

General Processing Resources

Other Languages
Please feel free to discuss other languages! I'll include links to their discussions here, or if popularity or insight warrants, include them in full.
  • haXe is an interesting little thing. It's an open-source language, the the main gimmick being that it can compile into a number of different languages - currently Javascript, Flash, PHP, NekoVM and an experimental beta C++, too.
  • Inform - whilst not an appropriate language for writing conventional roguelikes in, this is still worth a mention. It's a natural English programming language used for Interactive Fiction. It's very well documented and quite easy to use. How could this be used in a roguelike? Well, maybe you could output a traditional ASCII map for each 'room' or something. Use your imaginations.

Libraries

Libraries are additions to programming languages that add functionality and features that may be missing from the core language. They can greatly simplify your projects because effectively someone else has done the hard work for you - although the amount of hard work saved can vary from library to library. Some are simple (!!) ports allowing your language to access the often neglected console functions of your OS, whilst others are purpose-built with particular roguelike programs in mind, and include things such as pathfinding and LOS.

For those in the know, I'm using the term 'library' as interchangeable with framework, API, whatever. If it can be added to a language, it goes in here.

SDL
Language(s): Damn near everything, and nearly every platform to boot.
SDL (Simple DirectMedia Layer) is pretty ubiquitous. Nearly every 2D game you can imagine out there runs on a base of SDL - it provides the basics of being able to create a window, draw a sprite, move it around the screen, and also more general functions, like playing sounds, using CDs, using keyboards and joysticks, etcetera. Quite a few of the preceding libraries use SDL in one form or another, so odds are you won't directly use this. But it's nice to know where these things come from, and in case you've got an unorthodox platform / language, you may just have to fall back on it.
Roguelikes Using SDL: You really want me to list them all?

Curses
Language(s): Too many to list.
Now, if you're a more traditionally minded roguelike developer, you'll be looking for the Curses implementation for your chosen language. No emulation of consoles, no fudging things around to make them look 'authentic' - this is the real deal. Curses is the library used to code Rogue, the granddaddy of them all, so the heritage behind it is immense. It's a console control library, which will make many Windows users scratch their heads and grunt a bit - remember MS-DOS? Like that. Since being used to create the genre we all know and love, it's gone through a number of revisions and remakes (such as pcurses, PDcurses, ncurses) as technology has advanced, but it's still around to this day, and still going strong. Many languages have implementations and ports of Curses in some form or another, but beware - many Unix installs of languages come with the relevant curses libraries, but the Windows flavour of a few languages require you to go looking for a third-party implementation of it.
Roguelikes Using Curses - Rogue, ADOM

OpenGL
Language(s): Practically all where... erm, practical.
OpenGL is as widespread as SDL and perhaps even more popular. If you aren't being told to use SDL for your graphics in your program, you're being yelled at to use OpenGL. Whilst most people think of 3D when using OpenGL, it's more than capable of fulfilling any and all of your 2D needs as well, and given the widespread adoption of it, there is a massive amount of documentation and implementations of it out there.
Roguelikes Using OpenGL: Some nonsense Dwarf game, for starters.

Allegro
Langauge(s): Quite a few.
Allegro is one of the many libraries that use SDL as their base, and it's certainly one of the most popular and well-supported. In addition to most of the core SDL features, it also includes many other useful things, such as vector drawing, text support, and basic 3D.
Roguelikes Using Allegro: 3059 (and it's sequel, 3069?), Sword of Fargoal remake

libtcod
Language(s): C++, .NET, Python, Common Lisp
libtcod (which is named after the game it was written for, The Chronicles of Doryen) is a true-colour console emulator that also includes many roguelike-specific features such as path-finding, various LOS implementations, file parsing, etcetera. All-in-all, if you're looking to make a roguelike, libraries like this are the way of the future.
Roguelike(s) Using libtcod: The Chronicles of Doryen, Umbrarum Regnum

RLX
Language(s): Common Lisp
RLX - which stands for nothing in particular, although presumably something like 'Roguelike eXtended' or something - is a library that leans towards the more graphical roguelikes. It's certainly a very polished project, although it has very few projects using it, which may mean you're out on your own if things go wrong or you're looking for examples to be inspired by.
Roguelikes Using RLX: Void Mission Zero (design document only, from RLX website)

Valkyrie
Language(s): FreePascal
Vallyrie is the library written by the developer of DoomRL and it's associated brethren (DiabloRL, Berserk!, AliensRL). Given the widespread popularity that DoomRL has, this naturally ensures that this is a library that many developers would love to get their hands on. Of course, there's one problem - it's not complete yet. There are various downloads that form part of the eventual library, but by the author's own admission, this totals no more than 20% of the entire library. Still, what's there may be of some use to those of you developing a roguelike in FreePascal, and is certainly worth keeping your eye on in case the library opens up a bit more in the future.
Roguelike(s) Using Valkyrie: DoomRL, DiabloRL, Berserk!, AliensRL

jQuery
Language(s): Javascript
jQuery is an unusual thing to include here, sure, but I believe that it offers great potential to the Javascript roguelike developer. It's all about presentation, speed, and function. It's also the foundation for a lot of AJAX applications, and if you use a database in combination with your Javascript, jQuery provides the perfect and seamless medium for the two to work together in.

Applications

Now here's a secret. You'll notice that in the game development scene, quite a few people look down on those that use one of the various game-maker applications. They scoff and scorn and look down their nose at you, making you believe that because you don't slave over hot code line by line, they're somehow better than you. But truthfully? You're not. The people who play your game aren't going to judge it by the methods they use to create it. They're going to judge the game by how fun it is, and that's the only thing that you need care about. So if you want to make a game, but just can't get to grips with a language, then by all means search for a game maker that helps. There's nothing wrong with it at all, and remember - 99% of people who say they're going to make a game never release anything. So be different - make a game. I guarantee you that most of those same forum-goers that poo-pooed you for chosing a game maker haven't released anything.

Game Maker
Game Maker is - outside of pirated copies of RPGMaker - often the first experience users get with using a drag-drop method for instant game development. As such, it has a large and active community behind it, and many notable games have been created with it. A downside to Game Maker, however, is that it is a commercial product and to access its more advanced and popular options means forking out some money.

Construct
Construct is very similar to Game Maker in many ways, and different in many others too. Construct is built on a DirectX base and also uses Python as a scripting language, and natively includes things such as a physics engine and shaders - meaning that you can end up with one very swish roguelike should you find reason (and time) to include such features. Additionally, Construct is both completely free and open source, points that many independent developers feel strongly about.

Links of Interest for Construct

XNA Game Studio Express
This has been the big darling of the independent scene for a while now - not only did Microsoft develop the relatively friendly C# language, they also actively cultured a community around it for game development, creating the XNA platform and releasing plenty of tools and tutorials to go with it. And just recently, they've opened up games created with XNA to the Xbox Live Marketplace, meaning that if you chose to develop a roguelike in this way, you can almost immediately publish it for millions of gamers the world over to enjoy (and get paid for your troubles, too)

Links of Interest for XNA
  • Role Playing Game Starter Kit. Whilst not a roguelike per-say, this free Project from Microsoft will still contain a lot of interesting information and code to look at that might help you with your own game.

Multimedia Fusion

Unity
Unity is a toolset that has gathered quite a bit of hurrah in the Indie scene. It's certainly very sexy, offers a free Indie version (and a very affordable Professional version) that comes packed with features - such as supporting many different languages (Javascript, C# and Boo), web deployment, iPhone and Wii development, intergrated physics and terrain editors, networking - basically, Unity is the tool you want to be using. And hey, you can't fault a toolset that can create such games as Velociraptor Safari, can you?

Links of Interest for Unity
  • The thread on TIGSource announcing the release of Unity 2.5 for Windows. A very nice thread that contains many questions you'd want to ask, answered by the developers and users themselves.

Ren'Py
Ren'Py is a Visual Novel creator that's programmed in Python but uses a simpler syntax (is that even possible with Python?) for creating the game itself. It's also easily extensible into other genres with similar foundations, such as Dating Sims and Life Sims. There's not been a roguelike written for it yet, and even then it'd be a fairly unorthodox and unique roguelike - and yes, consider that a challenge.

Miscellaneous Links

Web

Bay12Forum
« Last Edit: March 28, 2009, 07:13:59 pm by Dasleah »
Logged
Pokethulhu Orange: UPDATE 25
The Roguelike Development Megathread.

As well, all the posts i've seen you make are flame posts, barely if at all constructive.

Dasleah

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #1 on: January 23, 2009, 03:22:21 am »

This spot reserved for future shenanigans.

Those being, spill-over from the above, and maaaaybe a list of roguelikes that have their source code available, sorted by language.

And, of course, free publicity for any roguelikes made by Bay12ers ;)
« Last Edit: January 23, 2009, 03:42:48 am by Dasleah »
Logged
Pokethulhu Orange: UPDATE 25
The Roguelike Development Megathread.

As well, all the posts i've seen you make are flame posts, barely if at all constructive.

Fenrir

  • Bay Watcher
  • The Monstrous Wolf
    • View Profile
Re: The Roguelike Development Megathread
« Reply #2 on: January 23, 2009, 11:02:48 am »

Let me be the first to say that this a marvelous idea and that you've done an impressive job.

I once got close to making a roguelike. I had inventory working - the items even stacked - but, for a reason I've forgotten, I just quit and deleted all my code. I'm part of that 99% that never does anything they say they will, but my pride will not permit me to use "game maker" or something. I can't permit myself be lazy. I can't do that!
Logged

JoshuaFH

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #3 on: January 23, 2009, 11:22:22 am »

Can people that don't know squat about programming (like me) help too?
Logged

Servant Corps

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #4 on: January 23, 2009, 12:44:10 pm »

Thanks for the XNA Creators Starter Guide. It looks like a legal version of RPG Maker 95, which is awesome! Maybe I might be able to make the "Insurgency" game I always wanted. Maybe some drug running in a mysterious country that starts with the letter A and end in -Stan.

But, um, I'm not sure how that can help make a rogue-like. Unless you throw some random RNG nonsense that can decide quests.

EDIT: Come to think of it, I could try to add an "strategy" element to the Insurgency game, similar to "Evil Genius"...
« Last Edit: January 23, 2009, 01:05:19 pm by Servant Corps »
Logged
I have left Bay12Games to pursue a life of non-Bay12Games. If you need to talk to me, please email at me at igorhorst at gmail dot com.

Sowelu

  • Bay Watcher
  • I am offishially a penguin.
    • View Profile
Re: The Roguelike Development Megathread
« Reply #5 on: January 23, 2009, 01:09:45 pm »

You're my new best friend.

I don't think I'll quite go for the 7DRL as work and home life are intruding, but I really want to.  Oh well.  I'll still have fun :D

Let me throw something out here.  How do people feel about hex roguelikes?  I've seen a hex version of some java (I think) Rogue.  Controls are fairly intuitive, you use the ins-home-pgup-del-end-pgdn block, though laptops are a little bit hosed.  (Although considering this is a DF-style and not a traditional roguelike I'm looking at making, it should be quite navigable with arrows too.)

Obviously they have a greater graphical commitment, and really can't be traditional curses at all (unless you just make each hex two tiles wide).  But is there any love or hate for them floating around?  Pathfinding is cooler at least, and round things like domes are a little easier.
« Last Edit: January 23, 2009, 01:18:31 pm by Sowelu »
Logged
Some things were made for one thing, for me / that one thing is the sea~
His servers are going to be powered by goat blood and moonlight.
Oh, a biomass/24 hour solar facility. How green!

stummel

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #6 on: January 23, 2009, 01:21:36 pm »

Thumbs up :)

Great to find perl roguelike-utils. Looking into another source would really help me to get some more ideas how to solve some problems.
Logged

Keiseth

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #7 on: January 23, 2009, 02:35:48 pm »

Wow, incredible job. "Megathread" is right. Hm, it might be outside the bounds of an introduction, but how about a mention of Lua? I've always wanted to try that but never have, some sort of C++/Lua hybrid roguelike.

7DRL... Hm, I want to get involved for that. I even have a pretty good idea for something new and fresh (and hopefully not boring, on account of the things that it omits.)

XNA and Xbox Live Community games? Could Microsoft be doing something good and right? What strange times we live in...

Logged

chaoticag

  • Bay Watcher
  • All Natural Pengbean
    • View Profile
Re: The Roguelike Development Megathread
« Reply #8 on: January 23, 2009, 02:45:24 pm »

This ought to be stickied, and I shall start learning python as learning it seems the most fuss free. I think I actually might get something done... but only if I manage to stick to it.
Logged

qwertyuiopas

  • Bay Watcher
  • Photoshop is for elves who cannot use MSPaint.
    • View Profile
    • uristqwerty.ca, my current (barren) site.
Re: The Roguelike Development Megathread
« Reply #9 on: January 23, 2009, 03:08:18 pm »

For flash, SWFmill and one other program(diffrent for 2.0 and 3.0, both shown on their site) are free and open source command line utilities.

Also, C is NOT C++, so you might want to mention it.
Logged
Eh?
Eh!

Dasleah

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #10 on: January 23, 2009, 05:27:02 pm »

Can people that don't know squat about programming (like me) help too?

Sure - we've got a large enough base of coders from plenty of different languages that I'm sure someone will be able to help you with something. And if not, at least our Google-Fu may prove better than yours.

Quote from: stummel
Great to find perl roguelike-utils. Looking into another source would really help me to get some more ideas how to solve some problems.

Yeah, from what I've heard, Perl is not the language of choice to write a roguelike in, but as I said in the post, it's what your comfortable with that you should be using. I've never used the language so I can't really pass comment, but if anyone else has, please feel free to belt out a paragraph or so of pros and cons.

Quote from: Keiseth
Wow, incredible job. "Megathread" is right. Hm, it might be outside the bounds of an introduction, but how about a mention of Lua? I've always wanted to try that but never have, some sort of C++/Lua hybrid roguelike.

Ah, yes, Lua. It's certainly gaining quite a lot of popularity as a scripting language these days, and I have seen it used in roguelikes before. I'll see what I can dig up.

Quote from: qwertyuiopas
For flash, SWFmill and one other program(diffrent for 2.0 and 3.0, both shown on their site) are free and open source command line utilities.

Also, C is NOT C++, so you might want to mention it.

Thanks for that Flash stuff, I'll go and check it out. And yeah, I'll add the C section (and in fact already have, albiet sparse on content) - there are a lot of popular and useful languages still missing from here, but mainly I posted this up now because I was sick of making up stuff on languages I'd never used and was hoping that someone in the community might have more relevant and useful insights into them.

And thanks, everyone. I'll keep pegging away on the thread, updating as I find more interesting things. Feel free to discuss whatever here - post ideas for roguelikes, requests for help or collaboration, general programming questions, etcetera. And if any of you frequent other forums and communities that would benefit from this information, feel free to cross-post it there. Just be sure to link back to the original here and post a link to the new thread here, so I can keep an eye on them and include any information that the other threads might pick up.
Logged
Pokethulhu Orange: UPDATE 25
The Roguelike Development Megathread.

As well, all the posts i've seen you make are flame posts, barely if at all constructive.

mainiac

  • Bay Watcher
  • Na vazeal kwah-kai
    • View Profile
Re: The Roguelike Development Megathread
« Reply #11 on: January 23, 2009, 06:19:26 pm »

That C++ tutorial is fantastic.  I've never been able to come close to understanding object oriented programing but he translates the concepts in a very easy to understand and engaging way.
Logged
Ancient Babylonian god of RAEG
--------------
[CAN_INTERNET]
[PREFSTRING:google]
"Don't tell me what you value. Show me your budget and I will tell you what you value"
« Last Edit: February 10, 1988, 03:27:23 pm by UR MOM »
mainiac is always a little sarcastic, at least.

Ampersand

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #12 on: January 23, 2009, 06:58:37 pm »

I did run across a simple roguelike developed in Ruby, but it seems the programmer kind of gave up on it. The source code remains out there somewhere though, and it remains a fine proof of concept of what is possible in Ruby.
Logged
!!&!!

beorn080

  • Bay Watcher
    • View Profile
Re: The Roguelike Development Megathread
« Reply #13 on: January 23, 2009, 07:51:42 pm »

I am tempted to give this a shot. I almost had a basic combat system for a D&Dish clone but class ended and I didn't have a way to continue coding. However, my willingness to learn a new language is, unfortunately, low, and the only language I could learn in high school was Visual Basic.


Now that you've stopped laughing, anyone know of an easy tutorial online so I can refresh myself? A compiler would be helpful, but I expect I can find one on my own.
Logged
Ustxu Iceraped the Frigid Crystal of Slaughter was a glacier titan. It was the only one of its kind. A gigantic feathered carp composed of crystal glass. It has five mouths full of treacherous teeth, enormous clear wings, and ferocious blue eyes. Beware its icy breath! Ustxu was associated with oceans, glaciers, boats, and murder.

Tilla

  • Bay Watcher
  • Slam with the best or jam with the rest
    • View Profile
Re: The Roguelike Development Megathread
« Reply #14 on: January 23, 2009, 08:10:20 pm »

Did Terror in ASCII Dungeon tutorial a few months back and was pleased with my ability to make a little guy walk around and do nothing :D One day I'll try again more seriously. One day~
Logged
Pages: [1] 2 3 ... 72