Chaosforge Forum

  • March 28, 2024, 06:50
  • Welcome, Guest
Please login or register.



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

Author Topic: Discussion on game development  (Read 14551 times)

Kornel Kisielewicz

  • God Hand
  • Apostle
  • *
  • *
  • Offline Offline
  • Posts: 4562
    • View Profile
    • http://chaosforge.org/
Discussion on game development
« on: June 17, 2007, 06:14 »

I have no idea how good of a coder he is. He's keen on gamedesign, thats obvious. Somehow i just cant see roguelikes as a pinnacle of coding...
Actually roguelikes are a quite challenging thing to code, especially in the randomness department. Coding a RPG/Shooter/Strategy is much easier :/.
Logged
at your service,
Kornel Kisielewicz

Karry

  • First Lieutenant
  • *
  • Offline Offline
  • Posts: 206
    • View Profile
Discussion on game development
« Reply #1 on: June 17, 2007, 10:00 »

Quote
Coding a RPG/Shooter/Strategy is much easier :/.
I wouldnt say that...especially in the case of commercial products. I am in the game-making team now.
It takes A LOT of time to wade through someone else's graphics engine, for example.
Various hardware compatibility...
Creating AI for A-class shooter is no easy task either...
Physical engines arent that common yet, but will become a requirement soon...
Logged

Rabiat

  • Sergeant
  • *
  • Offline Offline
  • Posts: 98
    • View Profile
Discussion on game development
« Reply #2 on: June 19, 2007, 02:54 »

Quote from: Blade
DooMRL is very stable. It have some glitches, bugs, exploits, but they are not deadly, it crashes totally very rarely. For me good coder is not the one who have written overmoded unstable code, but the one who have written a little less moded, but stable code.

I don't mean to disrespect Kornel's work, but DoomRL isn't by far as stable as you're saying. There's been a lot of improvement, but the game used to crash on many occasions.

Quote from: Kornel Kisielewicz
Actually roguelikes are a quite challenging thing to code, especially in the randomness department. Coding a RPG/Shooter/Strategy is much easier :/.

I agree that coding a roguelike is more challenging than might appear from the result. Most people seem to think that a text-based application is necessarily simple to code. Randomness (level/monster generators) and LOS/pathfinding/AI are tricky subjects. Nevertheless I think you're vastly underestimating the development of RPG/FPS/RTS. Randomness in RLs has its complications, but there's also lots of things you can disregard in a roguelike, especially graphics, controller support, real time processing and multiplayer support, and usually sound support - unless you're coding DoomRL of course. ;)
Logged
0.9.9.2 - [22/8/2/0/0] - Mancubus Scrap Metal Collector

Blade

  • Tester
  • Elder Chaos Guard
  • Brigadier General
  • *
  • *
  • Offline Offline
  • Posts: 691
    • View Profile
    • Upyachka
Discussion on game development
« Reply #3 on: June 19, 2007, 05:27 »

I don't mean to disrespect Kornel's work, but DoomRL isn't by far as stable as you're saying. There's been a lot of improvement, but the game used to crash on many occasions.

Mmm. Yes, 0987 crashes sometimes, but in Beta all known crashes was fixed. At least i don't know now how to crash it, i have played a lots of games, and it haven't crashed.
Logged
Low orbit ion cannon damaged my brain!!1
Now i'm an idiot!1 Kill me, somebody!!11

Kornel Kisielewicz

  • God Hand
  • Apostle
  • *
  • *
  • Offline Offline
  • Posts: 4562
    • View Profile
    • http://chaosforge.org/
Discussion on game development
« Reply #4 on: June 20, 2007, 09:36 »

Quote
Coding a RPG/Shooter/Strategy is much easier :/.
I wouldnt say that...especially in the case of commercial products. I am in the game-making team now.
So am I ;].

It takes A LOT of time to wade through someone else's graphics engine, for example.
Various hardware compatibility...
Depends on the engine quality. Commercial engines are usualy a lot better documented than their OS counterparts.

Creating AI for A-class shooter is no easy task either...
Compared to behavioral AI with danger-aware pathfinding for a roguelike? xP

Physical engines arent that common yet, but will become a requirement soon...
Physics engines (I guess you're refering to those) ARE a requirement since about late 2005. They aren't as scary as they sound though. And most people use existing engines anyway.

Quote from: Blade
DooMRL is very stable. It have some glitches, bugs, exploits, but they are not deadly, it crashes totally very rarely. For me good coder is not the one who have written overmoded unstable code, but the one who have written a little less moded, but stable code.
I don't mean to disrespect Kornel's work, but DoomRL isn't by far as stable as you're saying. There's been a lot of improvement, but the game used to crash on many occasions.
I have to agree. It's mostly due to the fact that the core engine was hacked together, and never was meant to be released.

Quote from: Kornel Kisielewicz
Actually roguelikes are a quite challenging thing to code, especially in the randomness department. Coding a RPG/Shooter/Strategy is much easier :/.
I agree that coding a roguelike is more challenging than might appear from the result. Most people seem to think that a text-based application is necessarily simple to code. Randomness (level/monster generators) and LOS/pathfinding/AI are tricky subjects. Nevertheless I think you're vastly underestimating the development of RPG/FPS/RTS.
I'm not ;). Actually the biggest problem with those games is content creation. Just look around on the thousands of projects that have been created that died ONLY because the lack of content. Roguelikes on the other hand have a way to cheat that problem -- they create content themselves. But that thing is realy NON-trivial, so that's why most roguelikes fail.

The biggest trick is NOT to generate content. It's to generate PLAYABLE content.
Logged
at your service,
Kornel Kisielewicz

Santiago Zapata

  • Temple Guardian
  • Backer
  • First Lieutenant
  • *
  • *
  • Offline Offline
  • Posts: 236
  • Roguelike Developer
    • View Profile
    • Slashie.net
Discussion on game development
« Reply #5 on: June 20, 2007, 13:14 »

I agree with what Kornel napisaled... developing a roguelike is hard, not only because of its randomness/LOS/pathfinding/AI, etc algorithms and technical challenges, but because of generating playable, interesting and balanced content, tasks which are often underestimated by the fellow roguelike developer which thinks he has the next major game on his pockets.

Also, injecting a theme into your players using a limited symbol set is an interesting challenge.
« Last Edit: June 20, 2007, 13:45 by Santiago Zapata »
Logged
Slash (Castlevania, Metroid, Drash, ZeldaRL)
Temple of The Roguelike
Slashie.net

Karry

  • First Lieutenant
  • *
  • Offline Offline
  • Posts: 206
    • View Profile
Discussion on game development
« Reply #6 on: June 20, 2007, 14:39 »

Quote
Depends on the engine quality. Commercial engines are usualy a lot better documented than their OS counterparts.
Documentation is good, but it is still a great deal of work to make it serve YOU, to do what you want, instead of what the "stock" version does. And writing a modern graphical engine yourself is not exactly best way to spend your time, these days.

Quote
Compared to behavioral AI with danger-aware pathfinding for a roguelike? xP
Never seen any kind of "danger-awareness" in any roguelike...come to think of it - retreating enemies and the like are rarely seen altogether, and usually proclaimed as a key feature of a game.

Quote
Physics engines (I guess you're refering to those) ARE a requirement since about late 2005.
Only for A-class shooters. Not really for any other genre. People are reluctant to use even something so old and simple as "Havok".

Quote
Most people seem to think that a text-based application is necessarily simple to code.
Mostly because it is. However, roguelikes are not text-based applications. :)
Text-based game would be called Interactive Fiction. And those are very simple to code.

Quote
The biggest trick is NOT to generate content. It's to generate PLAYABLE content.
I never said anything about content, my point was about coding skill.

Logged

Behrooz Wolf

  • Elder
  • Lance Corporal
  • *
  • *
  • Offline Offline
  • Posts: 35
    • View Profile
Discussion on game development
« Reply #7 on: June 20, 2007, 18:11 »

Does it really make sense to try to start a pissing contest about what/where/when/how/why code works with someone who might otherwise be spending that time cooking up a new public release? 

I'm surprised that there hasn't been a barrage of flames from people without beta access already. 

All I can say is mad props to anyone who spends their time working on games for free.  I know I don't have the time to do that anymore...
Logged

Rabiat

  • Sergeant
  • *
  • Offline Offline
  • Posts: 98
    • View Profile
Discussion on game development
« Reply #8 on: June 21, 2007, 03:00 »

Quote from: Kornel Kisielewicz
Actually the biggest problem with those games is content creation. Just look around on the thousands of projects that have been created that died ONLY because the lack of content.

Although the latter is very true, I can't get my head around the idea a 3D graphics engine would be 'much easier' to code than a random level generator for a roguelike.

Quote
Roguelikes on the other hand have a way to cheat that problem -- they create content themselves. But that thing is realy NON-trivial, so that's why most roguelikes fail.

Content generation is a major challenge for roguelikes as much as any other game. Roguelikes imo don't actually create content themselves, they arrange content themselves. It is possible to build a pseudorandom content generator which produces random monster types, random terrain types and the like, but I'm not aware of any RLs so far that actually do that.

Quote
The biggest trick is NOT to generate content. It's to generate PLAYABLE content.

Also, very true. But the point you made about 'difficulty' was about coding, not about content generation.

Quote from: Santiago Zapata
developing a roguelike is hard, not only because of its randomness/LOS/pathfinding/AI, etc algorithms and technical challenges, but because of generating playable, interesting and balanced content, tasks which are often underestimated by the fellow roguelike developer which thinks he has the next major game on his pockets.

I agree. Developing a RL engine is much easier than developing a RL itself. But again, this difficulty is inherent to game design, not to code complexity.

Quote from: Karry
Quote from: Rabiat
Most people seem to think that a text-based application is necessarily simple to code.
Mostly because it is. However, roguelikes are not text-based applications. :)
Text-based game would be called Interactive Fiction. And those are very simple to code.

Now don't be pedantic. ;) You know I meant to say 'text mode application'. Your point was that RLs are relatively easy to code. The fact that IF is (usually) easy to code doesn't support that observation. My point was that lack of graphics often leads people to believe that an application is easy to code, where (especially in the case of RLs) they often disregard the complexity of level generators, AI, pathfinding, etc, either in terms of code or in terms of processing. Which isn't the same as saying that RPG/RTS/FPS are easier to code than RLs. They're not.
Logged
0.9.9.2 - [22/8/2/0/0] - Mancubus Scrap Metal Collector

Karry

  • First Lieutenant
  • *
  • Offline Offline
  • Posts: 206
    • View Profile
Discussion on game development
« Reply #9 on: June 21, 2007, 03:31 »

Quote
Your point was that RLs are relatively easy to code.
No. My point was that some people think that a roguelike developer is THE 1337 h@x0r, who thinks and talks in assembler with his peers, and the like.
Logged

Kornel Kisielewicz

  • God Hand
  • Apostle
  • *
  • *
  • Offline Offline
  • Posts: 4562
    • View Profile
    • http://chaosforge.org/
Discussion on game development
« Reply #10 on: June 21, 2007, 07:58 »

Quote
Physics engines (I guess you're refering to those) ARE a requirement since about late 2005.
Only for A-class shooters. Not really for any other genre. People are reluctant to use even something so old and simple as "Havok".
For FPS, FPP/TPP RPGs, space-sims etc, they're a must have now.

Text-based game would be called Interactive Fiction. And those are very simple to code.
Sure you can use an existing IF engine. But try to code a reasonable and PLAYABLE natural language parser, and you'll see that even IF has it's caveants :P

I never said anything about content, my point was about coding skill.
Contrary to other games, in case of roguelikes, or procedural content in general, the coding skills are stricte needed for better content.
Logged
at your service,
Kornel Kisielewicz

Malek Deneith

  • Grand Inquisitor Emeritus
  • Grand Inquisitor
  • Lieutenant General
  • *
  • *
  • Offline Offline
  • Posts: 1256
    • View Profile
Re: Discussion on game development
« Reply #11 on: June 21, 2007, 10:50 »

Alright kiddies, that's enough of off-topic. The posts about game programming that didn't bring anything to Chaingun>Shotgun topic were split. You might continue the discussion here.

For the Inquisition!
Logged
Inquisition - saving your soul, one bolter shell at a time.
Spoiler: "Hackmaster Kills" (click to show/hide)

Santiago Zapata

  • Temple Guardian
  • Backer
  • First Lieutenant
  • *
  • *
  • Offline Offline
  • Posts: 236
  • Roguelike Developer
    • View Profile
    • Slashie.net
Re: Discussion on game development
« Reply #12 on: June 21, 2007, 11:29 »

What?

Picking between a Chaingun or a Shotgun is of utter relevance if you want to develop a serious game; we live in a dangerous world.

Or maybe not.
Logged
Slash (Castlevania, Metroid, Drash, ZeldaRL)
Temple of The Roguelike
Slashie.net

Newts Revenge

  • Lance Corporal
  • *
  • Offline Offline
  • Posts: 26
    • View Profile
Re: Discussion on game development
« Reply #13 on: June 21, 2007, 13:37 »

I've been in a few game-making teams, and it's disheartening to see people arguing about whether someone is a better coder because they work on graphical 3D games or roguelikes. To me, a good coder is the one who gets good work done. Some are more experienced than others, some write code at a faster rate, some write cleaner and more readable code, some write more stable code, some have better problem solving skills, some have more mathematical knowledge, some have more knowledge of advanced algorithms, some are better at working near the hardware level, some are better at making critical engineering decisions - all these things and more are factors. For modern AAA games one good coder is not enough, even if it's John Carmack, and even if you have the Unreal 3 engine to work with. You need a whole team of good to great coders, who work well together, or you won't get a good result in a realistic time.

Programming a fully playable standalone game in under 7 days tells me that Kornel is at least a good coder, maybe a great one. But that doesn't really matter, it's the design skill that goes into his games (well... AliensRL at least) that make me play them, and thus join this forum. Which is as it should be, IMO. After all aren't Roguelikes supposed to be all about the design, by imposing very simple and restricted graphics to work with?
Logged

Aerton

  • Elder Chaos Guard
  • First Lieutenant
  • *
  • *
  • Offline Offline
  • Posts: 205
    • View Profile
Re: Discussion on game development
« Reply #14 on: June 21, 2007, 22:10 »

My point was that some people think that a roguelike developer is THE 1337 h@x0r, who thinks and talks in assembler with his peers, and the like.

Some people think that bragging on forums insulting works of others, and being able to type some magic words like "graphics engine", "havok", "assembly" makes them THE 1337 h@x0r
Logged
Pages: [1] 2  All