maandag 29 december 2014

BeastGameware Presents: Bowling Available now !

The game

We are proud to present that our Bowling game has now been released on the OUYA marketplace !

Fire up your OUYA and begin to dowload BeastGameware Presents: Bowling.

When you plan to use the online features in the game you will need an Exchange account.
You can create one ingame or on the website on your pc by going to:

Exchange Online Platform

And creating a new account.

Stay tuned on the devblog for more exciting information we have in store for you in 2015 !
Including new projects and updates !

Other information

The BeastGameware dev team will be taking three weeks of vacation to celebrate the new year.

This means that support will take longer than usual , but you can still send mails to
support@beastgameware.com !

Our support team will answers these questions/problems asap.

You can also contact us via our Twitter and Facebook page

go to

http://www.beastgameware.com

And click on those links !



dinsdag 23 december 2014

Release of Bowling has been pushed back

Hi

We wanted to inform you all that the release date of Bowling has been pushed back due to technical problems on our online platform servers.

We will be using the extra time to add a security title update to the game itself and resolve all the issues on the servers itself.

Thanks for your understanding.

vrijdag 19 december 2014

The Holiday season

Hi there BeastGameware enthusiasts and followers !

It is just a few days before the release of our first game on the OUYA gaming system,



BeastGameware Presents: Bowling™ will let players bowl right on their couch and let them get the highest score possible on the online scoreboard.

Players will able to download Bowling for free on their OUYA console on:

22 of december @ 1 PM CET

So get competitive !

The game uses our Exchange online platform for account connections and game scoreboard as well as game statistics.

We will open the Exchange platform an hour in advance to enable people to explorer the options on the website and already create their accounts through the website.

Bear in mind that you can also create an account through the game !

There will be post following the opening of Exchange platform with its various features available and also on the game itself.

Be sure to be following this blog and tell all of your friends about us because we will be revealing some exciting news to you very soon !

If you got problems with the game or Exchange platform be sure to email us at the following support email support@beastgameware.com our team is monitoring this email address very carefully.


donderdag 6 november 2014

BOWLO and site updates

We have been working on some new stuff at Beast Gameware. One of it is our new game project called BOWLO, aka Beast Gameware Bowling. It's a bowling game that is coming out for OUYA. If you like to take a sneak peak, you can go to our updated website: www.beastgameware.com, or you can watch the BOWLO game trailer here: 

maandag 1 september 2014

More info

For our gamedevelopment we use

Unity3d as the main engine , this will drive our game !

The BeastGameWare team

maandag 25 augustus 2014

New terrain system!

Hi folks!

Today we have some new info for you about our in-house terrain system.

This blog post will be about the blending of different textures between parts of each terrain tile and between each tile itself.



Our terrain is derived from a heightmap sculpt which then is converted into a mesh.
This mesh gets further sculpted inside Mudbox and then the final import is done to 3ds max.

From here on we create the roads and the rivers and other waterbodies.

Because the terrain consists of horse track trails and cliffsides it was impossible to use standard tiling textures.

We decided we would make the cliffs stand out and give them dedicated textures that wouldn't be distorted by uv-unwrapping like the standard heightmap terrain has.

This generates a problem.

Because the cliffsides polygons of certain terrain tiles are using non-tiling textures we need to correctly uv-map them on to it.

This creates a seam between the polygons from cliff and the polygons from the terrain.

To fix this problem we tried a few approaches:

1.
The use of "decal/duplicate polygons" , this means the terrain tile is one mesh and the trails and cliffs are created inside the terrain tile.
Where the 100% trail transitions into the terrain 100% polygons we create overlapping faces or decals.
In this way we can use vertex colors painted on these polygons whereas blue channel would be 100% trail tex and the red channel was then used for transparency to blend between the terrain.
This method "worked" but it came with certain flaws, the overlapping polygons would be darken out because of the destination colors of the terrain.



2.
The use of "MegaTextures"
This has a short answer , MegaTextures are nice but they are big memory eaters , not very handy to paint a mistake and certain tools are unavailable to us.
But it could also help in certain ways that we only have one mesh which means one object and the shader would only need to render the megatexture onto the tile which means only one draw call.

3.
The use of "Multi-uv's"

This is our final and currently working method.
Because of multiple uv's we could create it for the cliff/road and tiling terrain.
We still use vertex colors to specify texture channels but a little magic is done by our custom shaders for the game.
And the result is finally what we wanted it to be.
(The images still show non-smooth transitions because the mesh used for the test is not optimal nor does it display the game's world.







Stay tuned for the next blog post which will be our "in-depth terrain vegetation system".

Till then
The BeastGameWare Team

donderdag 3 juli 2014

World loader/constructor

For the past days we have been really busy creating and programming our custom world loader and constructor.

This system will load all the necessary game meshes, textures and placement data per tile per LOD level into the game engine.

Currently the whole system is made up that every gameobject is loaded through every currently loaded terrain sector.

What we can reveal to you how this looks like to the end user :


That's right all that hard work to show a "Loading..." message to the end user.
While this message may seem small the outcome is great perfection.
:)

Until next time,

The BeastGameWare Team

woensdag 28 mei 2014

Update

The game world has entered the stage of high detail levels and texturing.

This means it is slowly progressing through the final phase.

After that we will begin with the main storyline plotting and gameplay mechanics.

Enjoy!

vrijdag 11 april 2014

Shader time !

Got some time to make a shader for the various rivers that will cross the environment , enjoy !


The shader support:


  • Normal mapping
  • Flow of the river based on a 2D vector flowmap
  • Shore/shallow/slow flowing water parts have more transparency than the faster flowing parts
  • Vertex displacement to form 3D waves

Unexpected post

In this post i wanted to inform that the main job on the surrounding terrain has been finished !

This means that progress has been made on the game environment.

Next stop:

High poly terrain

Game on

donderdag 10 april 2014

Terrain frenzy and terrain system explained

Today i have finished most of the raw terrain sculpting and exported it as a terrain tile system.

And a little more information on how about the terrain system will work in the game.

Basically we have one large terrain splitted into smaller terrain tiles.
These terrain tiles are very important , not only for the terrain system itself but also in the sense of level of detail.

With these a sort of grid forms from those tiles , each tile has different lod levels:


  • LOD0 : is the highest lod level it contains the most details (polycount) , texture size and quality
  • LOD1 : this level contains the same polycount and details but the texture size and quality is reduced with 3 quarters instead of using 512x512 textures this lod level uses 128x128 this gives more memory bandwith but keeps the same quality of the model in the still rather nearby viewdistance.
  • LOD2 : the polycount on this level is radically reduced to a low detail level because this tile will be located at a rather far distance so it doesn't really matter what quality it has the player isn't there. Also the texture quality and size is more reduced to 32x32.
  • LOD3 : is basically only for surrounding tiles to hide away any views that might give away the size of the actual ingame terrain and give the player a sense of openess and greatness from the world he is in.

Example of a terrain tile:

So that's it for this post,
For more info about this game and interesting facts keep following this blog !

donderdag 6 maart 2014

...and work continues

The last days i have been really busy continuing the work on the terrain.

The main sculpting has been done and now everything is getting imported into 3ds max to create a high poly version of that terrain.

This gives also some benefits:


  • 90 degrees real life rockwalls and cliffs
  • Properly rotated textures , heightmap tends to do this really wrong by placing the whole texture over the terrain and not projecting it correctly
By using this technique i can also put more detail into my terrain on a very small scale.

That's it for now , more info will soon come !

maandag 3 maart 2014

Day one of development

Today i started to work on the game's most important stuff;

The gameworld

A game's nothing without a fully dynamic gameworld.

This will be the main workobjective for the coming weeks

More updates coming