Bay 12 Games Forum

Please login or register.

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

Author Topic: What was that Real Time roguelike game?  (Read 4096 times)

Torak

  • Bay Watcher
  • God of Gods of Blood.
    • View Profile
What was that Real Time roguelike game?
« on: February 15, 2009, 08:38:34 pm »

There was a topic about an in-development roguelike a few months ago, the most defining feature was that it was real-time. I've tried searching for it on the forum/internet with no results.

Does anyone remember? It had a demo out, where you fight in an arena until you die.
Logged
As you journey to the center of the world, feel free to read the death announcements of those dwarves that suffer your neglect.

One billion b-balls dribbling simultaneously throughout the galaxy. One trillion b-balls being slam dunked through a hoop throughout the cosmos. I can feel every single b-ball that has ever existed at my fingertips, I can feel their collective knowledge channeling through my veins. Every jumpshot, every rebound and three-pointer, every layup, dunk and free throw.

Okenido

  • Bay Watcher
  • Loli Advocate
    • View Profile
    • New Various Nonsense
Re: What was that Real Time roguelike game?
« Reply #1 on: February 15, 2009, 08:50:53 pm »

Logged

yamo

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #2 on: February 16, 2009, 03:17:38 am »

Logged
Then again, I consider Infinity to be overly ambitious, something that might easily spell it's downfall.


-Blackthorne

Torak

  • Bay Watcher
  • God of Gods of Blood.
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #3 on: February 16, 2009, 03:20:33 am »

Okenido got it, thanks.
Logged
As you journey to the center of the world, feel free to read the death announcements of those dwarves that suffer your neglect.

One billion b-balls dribbling simultaneously throughout the galaxy. One trillion b-balls being slam dunked through a hoop throughout the cosmos. I can feel every single b-ball that has ever existed at my fingertips, I can feel their collective knowledge channeling through my veins. Every jumpshot, every rebound and three-pointer, every layup, dunk and free throw.

Wimdit

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #4 on: February 16, 2009, 03:23:23 am »

So what, now this thread just dies?

I CANNOT ALLOW THAT
Logged

Tahin

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #5 on: February 16, 2009, 04:09:20 am »

Woah. He released the engine, and it even has a python example! Awesome! I think I may be more interested in this than the game itself.
Logged

Rhodan

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #6 on: February 16, 2009, 05:26:16 am »

I'm using the library to make my own stuff, it's pretty neat.
Logged

Sean Mirrsen

  • Bay Watcher
  • Bearer of the Psionic Flame
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #7 on: February 16, 2009, 05:28:54 am »

There's also 3095.
Logged
Multiworld Madness Archive:
Game One, Discontinued at World 3.
Game Two, Discontinued at World 1.

"Europe has to grow out of the mindset that Europe's problems are the world's problems, but the world's problems are not Europe's problems."
- Subrahmanyam Jaishankar, Minister of External Affairs, India

The Moonlit Knight

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #8 on: February 16, 2009, 06:28:13 am »

I'm using the library to make my own stuff, it's pretty neat.
Likewise. Seems like quite a few people are. The Doryen Library certainly does make it easier to develop a roguelike, as far as I can see, though apparently the Python implementation has some issues involving True Color and framerate (i.e. it's about five times slower than the C version, somewhere around 40-50 FPS; unsure if that's also factoring in things like pathfinding and other background processes).
Logged
A man once said to me, "If you want superpowers, all you have to do is take acid and you'll have any superpower you want." He then asked if I had just, at that moment, shaved half my face; I revealed that as being my superpower. Being suddenly and inexplicably half-shaven.

Tahin

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #9 on: February 16, 2009, 10:50:50 am »

Well, it's python. It's going to be a bit slower than C. That said, five times slower is a bit much, especially when all the rendering and such is done in C, so...

Well, it's a beta (I think) so that kind of stuff is understandable.

Anyhow, I'll probably play around with this once I'm not working on other projects.
I particularly like the lighting system. Anyone know if it's set up to handle multiple light sources? I'd just look at the code, but for some reason I have a great deal of trouble reading other people's python, and I don't even want to touch the C stuff. I hate C.
Logged

Rhodan

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #10 on: February 16, 2009, 11:09:22 am »

I'm not sure if libtcod even has a lighting system.  It has LOS and pathfinding and stuff, but I think lighting is something you'd have to add yourself.  The various colour blending options should make this a breeze though.
Logged

Sowelu

  • Bay Watcher
  • I am offishially a penguin.
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #11 on: February 16, 2009, 11:48:54 am »

Isn't there a realtime multiplayer online angband out there somewhere?  The graphics never worked right for me, but there were definately people online.

I just don't see where these things are much different from Diablo.  I see cooldown timers on those skills and I really hope there's autoattack.
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!

Tahin

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #12 on: February 16, 2009, 12:28:31 pm »

I'm not sure if libtcod even has a lighting system.  It has LOS and pathfinding and stuff, but I think lighting is something you'd have to add yourself.  The various colour blending options should make this a breeze though.

I'm pretty sure it does. At least it has the torch option in line of sight that adds a flickering effect to the LOS. Don't know if that actually translates to a full lighting system with light sources other than the player, though.
Logged

Rhodan

  • Bay Watcher
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #13 on: February 16, 2009, 02:09:42 pm »

I'm not sure if libtcod even has a lighting system.  It has LOS and pathfinding and stuff, but I think lighting is something you'd have to add yourself.  The various colour blending options should make this a breeze though.

I'm pretty sure it does. At least it has the torch option in line of sight that adds a flickering effect to the LOS. Don't know if that actually translates to a full lighting system with light sources other than the player, though.

That's the demo thingy, the torch is just coded on top, it's not a function in the actual library.
Logged

Aqizzar

  • Bay Watcher
  • There is no 'U'.
    • View Profile
Re: What was that Real Time roguelike game?
« Reply #14 on: February 16, 2009, 08:17:28 pm »

I can't believe no one else brought it up.  You know what I first thought when I saw Real Time Roguelike?  ZZT, because it was ASCII and it rocked.
Logged
And here is where my beef pops up like a looming awkward boner.
Please amplify your relaxed states.
Quote from: PTTG??
The ancients built these quote pyramids to forever store vast quantities of rage.
Pages: [1] 2