Breakout code design exercise

Started by
1 comment, last by DjMaSh 12 years, 2 months ago
[font=arial, sans-serif]

Hi all,[/font]

[font=arial, sans-serif]

Id like to do an exercise to come up with a code design for the traditional game breakout game (google if unsure)[/font]
[font=arial, sans-serif]

using an entity component system to see what designs you all come up[/font]
[font=arial, sans-serif]

with, and to practice my designing skills =P.[/font]

[font=arial, sans-serif]

I have my own ideas how to design it, but im more interested in the way other people think, and hopefully I might learn a thing or 2.[/font]

[font=arial, sans-serif]

Im particularly interested in designs engineered towards a data-driven entity[/font]
[font=arial, sans-serif]

system such as Artemis, where data and behaviour are split into components, and systems processing those components:[/font]

http://t-machine.org/index.php/2007/11/11/entity-systems-are-the-future-of-mmog-development-part-2/


[font=arial, sans-serif]

For simplicity, I want to focus on:[/font]

[font=arial, sans-serif]

Objects:[/font]


[font=arial, sans-serif]

- Ball[/font]
[font=arial, sans-serif]

- Paddle[/font]
[font=arial, sans-serif]

- Blocks[/font]
[font=arial, sans-serif]

- Powerups[/font]
- Bullet

[font=arial, sans-serif]

Behaviours:[/font]


[font=arial, sans-serif]

- Ball travels with linear velocity, initially at a random upward angle.[/font]
[font=arial, sans-serif]

- Ball bounces off left, top, and right boundaries[/font]
[font=arial, sans-serif]

- Ball bounces of blocks[/font]
[font=arial, sans-serif]

- Ball bounces off paddle[/font]

- Paddle can move left and right

[font=arial, sans-serif]

- Blocks disappear when a ball touches them[/font]
[font=arial, sans-serif]

- Blocks disappear when a bullet touches them[/font]

[font=arial, sans-serif]

- Powerups have a chance of spawning when a block disappears[/font]
[font=arial, sans-serif]

- Powerups travel down the screen until they hit the bottom boundary, at which point they are destroyed.[/font]
[font=arial, sans-serif]

- A powerup is engaged when it collides with the paddle[/font]
[font=arial, sans-serif]

- Powerups do not collide with blocks[/font]
[font=arial, sans-serif]

- Powerup 1 - Ball sticks to paddle instead of rebounding[/font]
[font=arial, sans-serif]

- Powerup 2 - Paddle is elongated in size[/font]
[font=arial, sans-serif]

- Powerup 3 - Paddle can shoot bullets when fire is pressed for x seconds[/font]

- Bullets travel up the screen
[font=arial, sans-serif]

- Bullets are destroyed when they collide with a block[/font]
[font=arial, sans-serif]

- Bullets are destroyed when they hit the top boundary[/font]

[font=arial, sans-serif]

- 3 lives[/font]
[font=arial, sans-serif]

- loose life when ball touches bottom boundary[/font]
[font=arial, sans-serif]

- game over at 0 lives[/font]
[font=arial, sans-serif]

- game win when blocks == 0[/font]


[font=arial, sans-serif][size=1]So yeah, if you could list the components you would use to build those 5 objects, and what systems you would use to implement those behaviours, and how those systems would process your chosen components.[/font]

[font=arial, sans-serif][size=1]This is all about the details![/font]
[font=arial, sans-serif][size=1]Hopefully someone is actually keen to give this a crack lol.[/font]

There are so many different ways this could be done. Im interested in your way

Advertisement
I would say there is a difference between a data-driven system and a component-based system. That article describes a component based system.

Are you looking specifically for components? Otherwise this seems to be an appropriate design..
[quote name='Telios' timestamp='1328190406' post='4908704']
I would say there is a difference between a data-driven system and a component-based system. That article describes a component based system.
[/quote]

When I say data-driven im actually meaning data oriented, where data is separated into structs (components), and behaviour is separated into systems.

[quote name='Telios' timestamp='1328190406' post='4908704']
Are you looking specifically for components?
[/quote]

Yeah, Im interested in how you break down your components and systems. Do you have a system per component-type? or do systems process multiple components at once? Do your systems process lists of entities, grabbing the needed components off each, or do they just process lists of components?

Heres my example design:

Components:
* Position - x, y
* Visual - texture
* Motion - velocity
* Physics - mask, dimensions, shape type
* Input - touch position
* Identity - stores the type of object (ball, paddle, block, powerup)
* Player - stores number of lives
* Powerup1/2/3 - stores powerup type enum, and any state associated with the powerup (maybe a timer)

Systems:
* RenderSystem - renders all visual components
* CollisionSystem - updates velocities of motioncomponents, does collision detection and response with physics components, raises collision events
* InputSystem - processes drag components, setting x-position to mouse position
* CollisionEventSystem - defines what happens when a collision occurs, responds to collision events from collision system: spawns powerups, engages powerups, deletes blocks
* GameSystem - processes player component, checks when lives == 0, checks when blocks == 0
* PowerupSystem - processes all powerup components

What do you think? Im not sure the best way to handle events between systems. Or how to tell the type of an object, so when a circle collides with a rect, how i know that rect is a block and not a paddle. Thats wat I thought the identity component could be used for.

thoughts?

This topic is closed to new replies.

Advertisement