Author Topic: How'd they do that? Explaining PC Engine tricks.  (Read 1423 times)

malducci

  • Guest
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #30 on: October 02, 2007, 01:41:06 PM »
The PCE hardware can't scale any sprites or backgrounds, but by changing the scrolling at each scanline, vertical scaling of backgrounds can be achieved -- a common trick on many game systems.
So is this how they did the scailing in the Arcade Card port of Art of Fighting? I was examining the game recently and I noticed when it scales in, the width seems to remain the same and just the height increases.

From what I understand, AoF actually switches resolutions, I'm guessing from 256 x 240 to 336 x 240.

The vertical scaling trick would be more like the Lords of Thunder intro when the hero takes off.

You called it! That's exactly what it is. The game switches between mid to low res and it uses scanline BG repositioning to scale it vertically. The sprites are changed out in the middle of the process.


ccovell

  • Hero Member
  • *****
  • Posts: 2245
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #31 on: October 02, 2007, 07:19:59 PM »
Mednafen's emulation isn't perfect, but it does emulate the resolution change mid-screen in Art of Fighting. Here's a little animation I made to show the change:



The playfield resolution changes from 256 to 304 horizontal pixels.  Of course, on a TV, the pixel aspect is wider in the 256 resolution, so the screen is filled up.

Black Tiger

  • Hero Member
  • *****
  • Posts: 11241
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #32 on: October 03, 2007, 06:47:24 AM »
I've got another question about horizontal scrolling.

Can a background horizontally scroll into itself, kinda like the vertical scrolling discussed earlier?

Today I played through Lords of Thunder and in a few places some of the horizontal scrolls hit a vertical wall where the bg transitioned to fully flat.
http://www.superpcenginegrafx.net/forum

Active and drama free PC Engine forum

malducci

  • Guest
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #33 on: October 03, 2007, 01:44:35 PM »
I've got another question about horizontal scrolling.

Can a background horizontally scroll into itself, kinda like the vertical scrolling discussed earlier?

Today I played through Lords of Thunder and in a few places some of the horizontal scrolls hit a vertical wall where the bg transitioned to fully flat.

 No. But that would be cool if it could. Lords of Thunder uses dynamic tiles to simulate hsync scrolls, but they're not. Dynamic tiles are either rendered on the fly or pre-rendered, and then sent to the display. This allows you more freedom when mixing tiles, lifting some of the restrictions of just hsync scrolls on a single plane system. You know that large enemy at the beginning of the desert level? That's mostly made of BG tiles. It looks like another layer because the tiles surrounding it, and the whole of the parallaxing tiles, are dynamic tiles.

 I'll post some pics if you need.

Black Tiger

  • Hero Member
  • *****
  • Posts: 11241
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #34 on: October 03, 2007, 04:13:53 PM »
What I don't get is, if animated tiles are used for bg scroll effects so much, why did developers only use them to simulate such simple effects?

Why not give the bgs a more 3D animation like the SFII floors or have more overlapping pieces of parallax or something?
http://www.superpcenginegrafx.net/forum

Active and drama free PC Engine forum

Black Tiger

  • Hero Member
  • *****
  • Posts: 11241
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #35 on: January 14, 2008, 12:29:41 AM »
Can anyone tell me if the in-game menu windows of Popful Mail use real wire frame/"vector" graphics or are simply animation?

The shadow 'transparency' effect in this game also looks cool since the screen frame doesn't change.
http://www.superpcenginegrafx.net/forum

Active and drama free PC Engine forum

ceti alpha

  • Hero Member
  • *****
  • Posts: 3831
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #36 on: January 14, 2008, 03:05:17 AM »
This thread is the bees knees.

Quote
There was talk of doing another system card (4.0?). It'd be possible to add a coprocessor to it. Maybe an NEC 32bit RISC chip (to keep in the spirit of things) Very Happy  ..one can dream

...and dream I will...  :pray:


"Let the CAW and Mystery of a Journey Unlike Any Other Begin"

Necromancer

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 21332
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #37 on: January 14, 2008, 04:32:43 PM »
Here's a question for the programming geniuses: towards the end of the second level in Sapphire, how is the castle wall warped to look like the perspective is shifting as you fly over?  Is it just animated sprites, or what?
U.S. Collection: 97% complete    155/159 titles

Black Tiger

  • Hero Member
  • *****
  • Posts: 11241
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #38 on: January 15, 2008, 12:06:25 AM »
Here's a question for the programming geniuses: towards the end of the second level in Sapphire, how is the castle wall warped to look like the perspective is shifting as you fly over?  Is it just animated sprites, or what?

I believe thats an Hsync effect, which Malducci explains on the first page of this thread.
http://www.superpcenginegrafx.net/forum

Active and drama free PC Engine forum

Necromancer

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 21332
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #39 on: January 15, 2008, 01:37:51 AM »
I believe thats an Hsync effect, which Malducci explains on the first page of this thread.

Thanks.
U.S. Collection: 97% complete    155/159 titles

nat

  • Hero Member
  • *****
  • Posts: 7085
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #40 on: January 15, 2008, 02:58:18 AM »
Here's a question for the programming geniuses: towards the end of the second level in Sapphire, how is the castle wall warped to look like the perspective is shifting as you fly over? 

That also happens during stage 1 as you fly over the skyscraper. It might happen elsewhere in the game too, I can't remember.

malducci

  • Guest
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #41 on: January 15, 2008, 04:25:54 AM »
Here's a question for the programming geniuses: towards the end of the second level in Sapphire, how is the castle wall warped to look like the perspective is shifting as you fly over?  Is it just animated sprites, or what?

 Yeah, it's the same type of effect that Chris did in his Axelay demo. You can scale or distort the background on the Y axis, pretty easily actually.

Quote
Can anyone tell me if the in-game menu windows of Popful Mail use real wire frame/"vector" graphics or are simply animation?

The shadow 'transparency' effect in this game also looks cool since the screen frame doesn't change.

 Where in the game is the transparency part?

ParanoiaDragon

  • Hero Member
  • *****
  • Posts: 4619
Re: How'd they do that? Explaining PC Engine tricks.
« Reply #42 on: January 15, 2008, 08:52:08 AM »
I think he's talking about one of the first area's in the game.