Author Topic: Some questions about tile graphics  (Read 8460 times)

NON

  • Rogueliker
  • ***
  • Posts: 349
  • Karma: +0/-0
    • View Profile
    • Infra Arcana
    • Email
Some questions about tile graphics
« on: July 13, 2011, 11:26:16 AM »
I've been thinking about how I would implement graphics for my game, and I'm stuck on one issue.

The common way of doing creature graphics seems to be to have one image per monster, drawn so they face the viewer directly.
Like this:


And I guess that works in a game with mostly melee combat. But would it look ok with firearms? Wouldn't it look like they were shooting from their backs when firing up on the screen?

I could possibly draw characters top-down, then maybe SDL can rotate the image, or I can add rotated images myself. But I want walls from an angled perspetive, which wouldn't make sense if characters are top-down.
Happy is the tomb where no wizard hath lain and happy the town at night whose wizards are all ashes.

Krice

  • (Banned)
  • Rogueliker
  • ***
  • Posts: 2316
  • Karma: +0/-2
    • View Profile
    • Email
Re: Some questions about tile graphics
« Reply #1 on: July 13, 2011, 12:09:19 PM »
Wouldn't it look like they were shooting from their backs when firing up on the screen?

No. The "perspective" rules are wrong anyway, so this is a non-issue. Don't try to think tile based graphics as anything related to realistic, that way it will be much easier.

kipar

  • Rogueliker
  • ***
  • Posts: 105
  • Karma: +0/-0
    • View Profile
    • Email
Re: Some questions about tile graphics
« Reply #2 on: July 13, 2011, 02:10:48 PM »
But I want walls from an angled perspetive, which wouldn't make sense if characters are top-down.
Maybe you mean isometric, not perspective? Then of course all tiles should be isometric too, such as there:
http://rltiles.sourceforge.net/dc-3d.html

NON

  • Rogueliker
  • ***
  • Posts: 349
  • Karma: +0/-0
    • View Profile
    • Infra Arcana
    • Email
Re: Some questions about tile graphics
« Reply #3 on: July 13, 2011, 02:43:08 PM »
But I want walls from an angled perspetive, which wouldn't make sense if characters are top-down.
Maybe you mean isometric, not perspective?
No I did not mean isometric, only tilted. I don't like the rotation in isometric, because it's not obvious to me which way I go when I press up.
Happy is the tomb where no wizard hath lain and happy the town at night whose wizards are all ashes.

Darren Grey

  • Rogueliker
  • ***
  • Posts: 2027
  • Karma: +0/-0
  • It is pitch black. You are likely to eat someone.
    • View Profile
    • Games of Grey
Re: Some questions about tile graphics
« Reply #4 on: July 13, 2011, 03:15:42 PM »
No. The "perspective" rules are wrong anyway, so this is a non-issue. Don't try to think tile based graphics as anything related to realistic, that way it will be much easier.

Agreed.  You can never have perfect facing, so don't waste your effort trying.  Players don't care about such realism anyway.  Stick to a consistent style and you'll be fine.

NON

  • Rogueliker
  • ***
  • Posts: 349
  • Karma: +0/-0
    • View Profile
    • Infra Arcana
    • Email
Re: Some questions about tile graphics
« Reply #5 on: July 13, 2011, 03:18:13 PM »
Quote from: Krice
No. The "perspective" rules are wrong anyway, so this is a non-issue. Don't try to think tile based graphics as anything related to realistic, that way it will be much easier.

Quote from: Darren Grey
Agreed.  You can never have perfect facing, so don't waste your effort trying.  Players don't care about such realism anyway.  Stick to a consistent style and you'll be fine.
These are just the responses I hoped for.  :)
Happy is the tomb where no wizard hath lain and happy the town at night whose wizards are all ashes.

Vanguard

  • Rogueliker
  • ***
  • Posts: 1112
  • Karma: +0/-0
    • View Profile
Re: Some questions about tile graphics
« Reply #6 on: July 13, 2011, 06:51:35 PM »
Readability and aesthetics are much more important than realism in this case.  I wouldn't worry about it if I were you.

Psiweapon

  • Rogueliker
  • ***
  • Posts: 334
  • Karma: +0/-0
  • Im in ur rougeliekz, pixelling ur tielz!
    • View Profile
    • I Lovemaking Tiles
Re: Some questions about tile graphics
« Reply #7 on: July 13, 2011, 07:32:00 PM »
Don't worry about that.

Just make sure the tiles are cool enough. Or better yet, AWESOME.
The invisible hand is a lie, the fiendish dogma of the market cultists. Lest the apostasy grows strong, their blood god will devour each and everyone, pious and infidel alike.

Z

  • Rogueliker
  • ***
  • Posts: 905
  • Karma: +0/-0
    • View Profile
    • Z's Roguelike Stuff
Re: Some questions about tile graphics
« Reply #8 on: July 13, 2011, 07:53:32 PM »
I don't understand why the situation is different for firearms. In both cases when attacking upwards it seems like attacking from the back, doesn't it?

But yes, just like on ancient Egyptian papyruses, tiles are not supposed to be a photograph-like perspective, their purpose is just to show what is where, don't care about facing unless it is important in the gameplay. (Since the ancient Egyptian way of drawing stuff was invented thousands of years before perspective, it is actually more natural for humans, isn't it?)

Of course all our opinions are from Roguelike fans. By asking general public you could possibly get an opinion that anything else than FPP sucks. ;)

NON

  • Rogueliker
  • ***
  • Posts: 349
  • Karma: +0/-0
    • View Profile
    • Infra Arcana
    • Email
Re: Some questions about tile graphics
« Reply #9 on: July 13, 2011, 08:21:58 PM »
I don't understand why the situation is different for firearms. In both cases when attacking upwards it seems like attacking from the back, doesn't it?
The difference to me is that with firearms, you actually see the image of a projectile coming out of someone's back.

But I have now been told a sufficient number of times not to worry!  :)

Also here is a good point against top-down rotating graphics from R.G.R.D:

Quote
>> Either you have facing or need to implement it for top-down view with
>> rotation to avoid creating false feature or else things are going to
>> look silly at best.

> You mean that if I have rotating graphics, it implies that there is
> underlying game mechanics related to facing (when actually it's purely
> graphical)?

In most graphical turn based games facing serves some purpose. You may
get emails asking whether armor protects equally from front and from
behind, why stabbing someone in the back does not deal extra damage or
asking if evasion changes depending on how you face incoming fire.

Quote from: Z
Of course all our opinions are from Roguelike fans. By asking general public you could possibly get an opinion that anything else than FPP sucks. ;)
Preferably with bloom effects all over it.  :P
Happy is the tomb where no wizard hath lain and happy the town at night whose wizards are all ashes.

Psiweapon

  • Rogueliker
  • ***
  • Posts: 334
  • Karma: +0/-0
  • Im in ur rougeliekz, pixelling ur tielz!
    • View Profile
    • I Lovemaking Tiles
Re: Some questions about tile graphics
« Reply #10 on: July 13, 2011, 08:33:19 PM »
... And that zapped wands, arrows, crossbow bolts, daggers and breath weapons have been shooting out of everyone's back since before the deluge.

Well not in my case since I've been only playing RLs for two years or so, hahaha
The invisible hand is a lie, the fiendish dogma of the market cultists. Lest the apostasy grows strong, their blood god will devour each and everyone, pious and infidel alike.