Roguelike?

For everything else. Video games, music, movies, sports, you name it.

Moderators: th15, Moderators

Post Reply
Silverware
Commodore
Commodore
Posts: 626
Joined: Fri Apr 17, 2009 11:50 am

Roguelike?

Post by Silverware »

Righto, I have to do a project in C# for Uni, so I'm building a Rogue-like.
And I want opinions on the idea and naming and stuff.

The games name isn't decided yet, so ideas would be greatly welcome.
Also the theme/story isn't set yet, so ideas and improvements on my base idea would be great.

The idea I currently have is that your a dwarf stuck 50 floors or so underground due to a cave-in.
Or just down there because your a freaking Hermit Dwarf.

The goal will be to get to the surface to buy some more booze, because your supplies of booze are empty.
I am planning to allow players to dig through rock so that they may make their own underground fortress as seen in DF if they wish.
Players will have to feed and booze their dwarf so it stays alive and fight the hordes of mindless green Orcs who live in some caverns above.

Unfortunately I am not aloud to use external libraries other than the .Net framework so cross-platform will not be in the Uni release, however if it proves popular I will endeavour to make it cross-platform.

Currently I have a basic cellular automata based cave generator but this will be improved, also working on implementing a FOV and lighting system so you can see things.
Imaillusion
Captain
Captain
Posts: 355
Joined: Sat Nov 28, 2009 8:57 am
Location: Thin air

Re: Roguelike?

Post by Imaillusion »

Do you plan to have the game as a side-scoller or from a top-down perspective?
Those that live by the sword... get shot by those that don't.
AlphaDetisMegas
Captain
Captain
Posts: 317
Joined: Sat Dec 13, 2008 7:59 pm
Location: Location,location,location.!

Re: Roguelike?

Post by AlphaDetisMegas »

Imaillusion wrote:Do you plan to have the game as a side-scoller or from a top-down perspective?
Have you ever heard of sidescrolling roguelikes, I sure as hell have not, how would one play such a roguelike.

Anyways, good luck on your project.
Nothing is forever. It can't be. 'Cause everyone changes.
Image
Whether they want to or not, they need to change. Myself... Even you!
STARSTRUCK
Moderator
Posts: 342
Joined: Wed Mar 03, 2010 3:46 pm
Location: sent milady ;)

Re: Roguelike?

Post by STARSTRUCK »

Imaillusion wrote:side-scrolling roguelike
Another wonderful idea from Imaillusion. He's a bottomless well of wisdom.

Anyway, Silverware: If you gave the game a death-based plot progression akin to the Saturn roguelike Baroque, I would love you forever and you would probably earn a couple awards.
Kaelis
Moderator
Posts: 1590
Joined: Fri Dec 14, 2007 4:46 am

Re: Roguelike?

Post by Kaelis »

If you want my advice (do you?), instead of coming up with grand ideas, focus on planning everything out (gameplay, mechanics, implementation) and then start coding it. If you keep adding to the concept, youll never get anywhere. Get the basics done first - level generation, moving around, fighting, death/winning etc. When you're done with that, if you still have time, you can start adding fancy features, but no earlier.

Mind you, ASCII roguelike won't impress anyone, and sprites/textures/models are time consuming. Unless its supposed to be something basic and not really meant to impress, in which case this is all beyond the point.
Silverware wrote:Unfortunately I am not aloud to use external libraries other than the .Net framework
Allowed.

And how are you gonna do graphics without external libraries? Or is it console-only, or, gods forbid, GDI?


AlphaDetisMegas wrote:
Imaillusion wrote:Do you plan to have the game as a side-scoller or from a top-down perspective?
Have you ever heard of sidescrolling roguelikes, I sure as hell have not, how would one play such a roguelike.
Uh, Spelunky? Ive seen some others, but can't remember the names right now. And i don't see whats the problem here, i can easily imagine such a roguelike. You move left, right, can jump up or fall down, climb ladders, stairs etc... other than that, not much different from classic top-down, really.
Silverware
Commodore
Commodore
Posts: 626
Joined: Fri Apr 17, 2009 11:50 am

Re: Roguelike?

Post by Silverware »

I personally wouldn't consider Spelunky a Roguelike, but rather a side scrolling adventure game of sorts.
Roguelikes are are after all like the game Rogue, the top down ascii rendered hack-n-slash game type.

Since I can only use the .Net framework It will have to be GDI drawing onto a console, as the console itself renders far too slow.
Oh and thanks for the proper spelling Im really bad with Allowed for some reason.

I like to look at the basic idea first then grab the parts that I will need to fit that together.
Combat is likely to be D20 like, since Im rather comfortable with how that works, and the Fov system is using Restrictive Precise Angle Shadowcasting, movement will likely just be simply you move one square they move one square.

It also isnt designed to show off graphically but rather be impressively coded. Since it is for a programming class I am doing it not a visual design class or anything.

///////////////////////

Depth based plot progression would be interesting but I don't see how It could be built around a thirsty dwarf wanting some booze =P. Unless its an evil mage making him thirsty... lol
Imaillusion
Captain
Captain
Posts: 355
Joined: Sat Nov 28, 2009 8:57 am
Location: Thin air

Re: Roguelike?

Post by Imaillusion »

...well, I didn't actually know what a "rogue-like" game was, so I probaly should have looked it up first :?

Agreeing with Kaelis, just work on the basic functions of the game first, you can add the storylines, character/weapon/monster stats, etc, later on
Last edited by Arcalane on Thu Aug 26, 2010 11:33 pm, edited 1 time in total.
Reason: rogue-like, not rouge-like, you ingrate
Those that live by the sword... get shot by those that don't.
Post Reply