Share My Creation Project Ryu - Bulldozer Engine Tech Demo

wonder

Expert
Licensed User
Longtime User
Thank you very much guys!!!

I've been working on this project since September. Creating a fully functional videogame has been my dream since I was 12, when my uncle taught me how to code back in 1994. I'm planning to add a few special moves such as the Hadouken, hopefully in the next two weeks. There's still a lot to do, but I'm very motivated and happy with what I've accomplished so far.

Once this project is complete, using the Bulldozer Engine, I'll be able create my own games with original characters and story!

Update:
- Added multiple background and foreground layers
- Added special effects layer
 
Last edited:

wonder

Expert
Licensed User
Longtime User
Alright guys, I'm dedicating myself again to this project!
Sorry about the broken links, everything's back online.
Check the latest update: Download Link

I smashed a few bugs and did some minor optimization to the code.
Looking forward to know your opinion!

Updates:

- Improved AI, the characters are now smarter and more aggressive.
- Came up with some interesting concept art on photoshop. Although I'm using copyrighted images, the comic-style design is entirely mine.
- Added an Inventory (test mode).



New concept art:

Player's avatar and stats. To be displayed on the top-left corner of the screen.



This one exemplifies what could be an in-game cut-scene, for example, before a special attack.



How it will look like, once the avatar/stats implemented.
 

Douglas Farias

Expert
Licensed User
Longtime User
Muito massa, continua esse projeto que tu vai ganha muita grana ainda
Se eu tivesse o conhecimento em jogos, estaria te ajudando =)
 

wonder

Expert
Licensed User
Longtime User
UPDATE:
I've been rewriting my physics engine. I am now using real Newtonian laws to simulate the interactions between objects.
Let's have a look at the actor attributes:
B4X:
HP_MAX(active_actor)                     =  Rnd(2000, 4000)         'points
HP(active_actor)                         =  HP_MAX(active_actor)    'points
PUNCH_ATK(active_actor)                  =   16.0                   'points
KICK_ATK(active_actor)                   =   28.0                   'points
DEF(active_actor)                        =    9.0                   'percent: of the opponent attack will be ignored
GUARD(active_actor)                      =   90.0                   'percent: of the opponent attack will be ignored
SPD(active_actor)                        =  160.0                   'percent of the actor height
ATK_SPD(active_actor)                    =    6.0                   'attacks per second
JUMP(active_actor)                       =  330.0                   'magical anti-gravity units
STA_MAX(active_actor)                    =  Rnd(90, 110)            'points
STA(active_actor)                        =  STA_MAX(active_actor)   'points
REC_SPD(active_actor)                    =    4.0                   'points per second
MASS(active_actor)                       =   93.0                   'kg
PUNCH_MASS(active_actor)                 =   4.94                   'percent of body weight
KICK_MASS(active_actor)                  =  16.68                   'percent of body weight
PUNCH_VELOCITY(active_actor)             =  230.0                   'percent of the actor height
KICK_VELOCITY(active_actor)              =  180.0                   'percent of the actor height

As you can see, each character has its own mass expressed in kilograms.
Every time the Collision Detector signals a collision between two objects, the following formula is applied to each axis:
B4X:
Dim u1, u2, v1, v2, m1, m2 As Float       
Dim x = 0, y = 1, z = 2 As Int

For axis = x To z           
    u1 = host_initial_velocity(axis)
    u2 = guest_initial_velocity(axis)

    m1 = host_mass
    m2 = guest_mass
          
    v1 = ((u1 * (m1 - m2)) + (2 * m2 * u2)) / (m1 + m2)
    v2 = ((u2 * (m2 - m1)) + (2 * m1 * u1)) / (m1 + m2)
          
    host_final_velocity(axis) = v1
    guest_final_velocity(axis) = v2
Next
REPLIES:
Thank you so much, Douglas! Your motivation is really important to me!

Nice!

One small advice, though: Don't use the triangle, square, circle, cross symbols for the buttons, or you risk getting some nasty Sony attack lawyer paying you a visit.
Thanks for the advice! However, since this is nothing more than a private demo of my Bulldozer (physics/game) Engine, I won't be using these graphical assets for the finished product. Everything will be re-skinned.
 
Last edited:

Troberg

Well-Known Member
Licensed User
Longtime User
UPDATE:
I've been rewriting my physics engine. I am now using real Newtonian laws to simulates the interactions between objects.​


Cool, very cool!

Thanks for the advice! However, since this is nothing more than a private demo of my Bulldozer (physics/game) Engine, I won't be using these graphical assets for the finished product. Everything will be re-skinned.

No problem, just wanted to give you a heads up. A friend of mine got a very nasty call from Sony because his garage band used those symbols in a music video and on their stage backdrop. Apparently Sony see them as an important part of their product image.
 

wonder

Expert
Licensed User
Longtime User
New version online: DOWNLOAD LINK

Updates:
- New moves: Heavy Punch and Spin Kick
- Physics: I have completely re-wrote my physics engine according to Newtonian physics, namely the law of conservation of momentum.
- AI: The AI engine was also completely re-written. I've added way more complexity to the opponents behavior and decision making. They're getting smarter day-by-day.
- Special Move: Slide your finger from CIRCLE to TRIANGLE for a super kick.
- Visuals: I've added a status bar which displays the current location, HP and Stamina.
- Misc: Whoever wins the fight, will throw random taunts and the WIN/KO screen.
Work In Progress:
- Collision Detector: I'm currently working on a "Vector Collision Detector", which should be more accurate than the current one. More details soon.​
 
Last edited:

wonder

Expert
Licensed User
Longtime User
You are one bad ass wonder, LOL
Walter
Ahahah!! Thank you so much, Walter!!

New version online: DOWNLOAD LINK

Updates:

Native Keyboard support (Arrow Keys + A, S, D, C)
It now runs on (Windows 64-bit) Google Chrome through the Arc Welder extension!!
- Step 1: Download and install Arc Welder for your Google Chrome.
- Step 2: On you Google Chrome apps, open Arc Welder and install the Project Ryu apk file.
- Step 3: Run and enjoy.​

 
Last edited:
Cookies are required to use this site. You must accept them to continue using the site. Learn more…