In the making: Arukanoido – an Arkanoid clone

Discussion, Reviews & High-scores

Moderator: Moderators

User avatar
beamrider
Vic 20 Scientist
Posts: 1448
Joined: Sun Oct 17, 2010 2:28 pm
Location: UK

Re: In the making: Arukanuido – an Arkanoid clone

Post by beamrider »

Excellent. Very quick progress. Looks great...

Is it the case that the vertical speed is constant, but diagonal adds horizontal movememnt into the mix and so looks faster?
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

beamrider wrote:Excellent. Very quick progress. Looks great...

Is it the case that the vertical speed is constant, but diagonal adds horizontal movememnt into the mix and so looks faster?
That might be the case, but the ball is faster when moving from right to left diagonally. I'll hack around with the other parts until I get a fresher view on the algorithm.
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

The ball catching bonus got in as well as the disruption bonus which splits the ball into three – adios flexibilidad. It has to go into Pulse rendering mode, not synchronizing to the retrace, when there are three balls. This will be a problem when the floating enemies come into play. :( Expect some degradation.

EDIT: S-bonus which slows down the ball added.

Image
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

Extra player bonus (although useless), number of lifes, bottom opened, hug box broke and where the hell did Grandma hide them little helpers?
Image

EDIT: Now you can lose balls and lifes. The collision detection for the Vaus has to be rewritten. The ball can sometimes pass through.
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

The ball trajectories are O.K. now. It's actually slower vertically as some people assumed but if my thinking is right that can be corrected using two (co)sine tables describing an ellipsis.

Two main issues that will probably turn you off are the defect collision detection for the Vaus and sprite garbage. :(

Good night!

EDIT: That went well… the sprite garbage is gone (also from Pulse) and the Vaus won't let balls through (minor workaround), so you can actually get some fun out of this.
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

joshuadenmark wrote:Great 8) paddles out of the closest :D
Just added paddle support and automatic detection. As soon as you spin paddle A it'll (have to) ignore the joystick as they use the same wires for the paddle fire buttons and the joystick's left and right direction. I hope the jitter is filtered sufficiently. This is so much better in VICE already.
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
Jeff-20
Denial Founder
Posts: 5759
Joined: Wed Dec 31, 1969 6:00 pm

Re: In the making: Arukanuido – an Arkanoid clone

Post by Jeff-20 »

I'm so excited for this one!
High Scores, Links, and Jeff's Basic Games page.
User avatar
joshuadenmark
Big Mover
Posts: 1218
Joined: Sat Oct 23, 2010 11:32 am
Location: Fr-Havn, Denmark
Occupation: Service engineer

Re: In the making: Arukanuido – an Arkanoid clone

Post by joshuadenmark »

Tested with paddles on real PAL Vic and it works great - already a playable game with smooth movement.
My paddles was a bit jittery at first, don't use them everyday but now they won't be hidden away :D

My humble compliment to you Pixel super game.
image.jpg
image.jpg (271.5 KiB) Viewed 3006 times
Kind regards, Peter.
____________________________________________________
In need of a wiki logon - PM me
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

joshuadenmark wrote:Tested with paddles on real PAL Vic and it works great - already a playable game with smooth movement.
My paddles was a bit jittery at first, don't use them everyday but now they won't be hidden away :D

My humble compliment to you Pixel super game.
This… this… to see this does me SO GOOD to watch and learn, especially after so little sleep. THANKS! :D :D :D
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

Round 2. I'm missing orange color. Would have to make the barriers orange for that, too. :( Or apply a multicolor mix of red and yellow. But then again you get those thick black vertical lines like you can see around the light blue bricks here.
Image
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

The Vaus (bat at the bottom) got a new collision detection. The reflection angles are different all across the thing so you can direct it better.

Missing:
* Enlarging bonus
* Breaking bonus (opening a door out to the next level)
* 29 levels and the DOH
* Floating enemies
* Scores
* Music & sound

* a gallon of John Smith's

And after all that ten times the effort to get it all right.

Have fun!
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
joshuadenmark
Big Mover
Posts: 1218
Joined: Sat Oct 23, 2010 11:32 am
Location: Fr-Havn, Denmark
Occupation: Service engineer

Re: In the making: Arukanuido – an Arkanoid clone

Post by joshuadenmark »

Wow Pixel, you work effectively :shock:

I'm looking forward to play tomorrow, too much white wine onboard currently 8)

This new game of yours are really amazing and I am enjoying it already. Please feel free to use memory expansion, think most of us got plenty :mrgreen:

My paddles is a bit slurky and will need a cleanup, will attend this tomorrow too.

Don't stay up too late :lol:
Kind regards, Peter.
____________________________________________________
In need of a wiki logon - PM me
User avatar
beamrider
Vic 20 Scientist
Posts: 1448
Joined: Sun Oct 17, 2010 2:28 pm
Location: UK

Re: In the making: Arukanuido – an Arkanoid clone

Post by beamrider »

Agree with memory up to 16K definitely no problem, also include the Title screen and cut scenes for authenticity if possible.
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

joshuadenmark wrote:Wow Pixel, you work effectively :shock:
I love you people, that's why.
joshuadenmark wrote:I'm looking forward to play tomorrow, too much white wine onboard currently 8)
Have been unmounting my head with beer. *dribble* Definitely too much. That's why I'm with rosé now. :mrgreen:
joshuadenmark wrote:This new game of yours are really amazing and I am enjoying it already. Please feel free to use memory expansion, think most of us got plenty :mrgreen:
In the name of customer satisfaction: it'll be 16K. :D Can't make it to round 3 myself. :( The original arcade version won't let me to round 2! Something's terribly wrong…
joshuadenmark wrote:My paddles is a bit slurky and will need a cleanup, will attend this tomorrow too.
I'm not exactly sure if the paddle emulation sucks or if this terrible hangover split my head. The Vaus occasionally jumps from left to right here. Enough to irritate me at the moment. I hope it'll work out.
EDIT: Of course it's not the paddle emulation but my mouse pad.
joshuadenmark wrote:Don't stay up too late :lol:
Only if it's about reason. :twisted:
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
User avatar
pixel
Vic 20 Scientist
Posts: 1343
Joined: Fri Feb 28, 2014 3:56 am
Website: http://hugbox.org/
Location: Berlin, Germany
Occupation: Pan–galactic shaman

Re: In the making: Arukanuido – an Arkanoid clone

Post by pixel »

beamrider wrote:Agree with memory up to 16K definitely no problem, also include the Title screen and cut scenes for authenticity if possible.
Sure thing. Will even ask Taito if they'd like to see a conversion.
A man without talent or ambition is most easily pleased. Others set his path and he is content.
https://github.com/SvenMichaelKlose
Post Reply