What’s new in Whitestorm.js V2

The power of modules

Alexander Buzin
WhitestormJS Framework
5 min readSep 24, 2017

--

In this post, we will look into some new features whs offers along with some practical examples, one to build a simple sphere, then a more advanced one to build a geometry with texture.

What is WhitestormJS

whs is a component based JavaScript framework for building animated 3D graphics with support for physics in the web browser. It uses WebGL and three.js under the hood, and is entirely open source.

Why use whs

  • Speed up development.
  • Structure your code with components and modules.
  • Easily apply physics with collision detection, soft and rigid body dynamics.

Works great for teams, it enforces patterns and structure to large and complex projects. Your code is more readable and maintainable.

The framework also makes it simpler to get started with a project. The boiler plate having to write is kept at minimum, you get to see results in no time.

Here is how to create a scene, a sphere with some material applied to it, some light and even an orbit control to navigate. You can see the source code and result in the codepen below:

State of whs

The focus is now entirely on v2. Although still beta, the API is pretty stable. We brought in new features and modules. The framework continues to leverages three.js and offers a much simpler 3D development toolset.

Component oriented

If you are new to the WhitestormJS framework — start here. This second version is focused on integrations. It introduces a completely new API that lets you extend your components via modules.

Modules

Ever wanted to add 3d sound to your scene with multiple directional audio sources? How about Physics, glowing effects, autoresize, and support for socket.io? Modules to the rescue!

Modules are awesome. Modules can do anything you can do with a plains THREE.Mesh, but much keeping your code more cleaner and flexible.

But what’s a module exactly?

Simply put, a module is an extension of your components, or app.

Pic 1. This work space is neat, many parts of it are made of the same element set. A chair is made of simple wood, with other materials over it.

DRY

Don’t Repeat Yourself. We all know this right? Capabilities gets applied to components using modules. WhitestormJS is offering a growing number of modules written by the community and core developers.

Flexible

You can always remove, change (fork) and extend certain modules specificities to fit your needs. They are configured by default to cover most common use cases.

Easy to use

Modules are applied to existing components with just a few lines of code

Pic 2. AudioModule used in WHS.Sphere

How Modules work

The module system is following a unique philosophy. Its strength is in making your modules work together.

Pic 4. Separation of concern and coordination accomplishes great things.

Let’s say you have a sound and a physics module you wish apply to a component . Bodies dynamics and audio don’t generally impact each other, no worries there… But let’s take another case with the App’s rendering and camera module. This leads to a two way dependency:

  • Rendering a scene needs to take into consideration the camera’s attributes such as its position, angle, focal length, etc.
  • Camera movements alters the rendering projection.

Let’s talk a bit about how the module system works, diving into how it manages modules applied to components.

The module manager handles all the modules references, acting as a bridge to modules applied to your components.

Module lifecycle

Pic 4. Graph

Let’s go through the life cycle of a Module when applied to a Sphere Component.

  1. Applying the module to a Sphere. The code below shows how a Module, here doing texturing, is initiated and passed as modules property of the component. Line 9. and 10.
Pic 5. Example

2. Modules are applied to the component. At this stage we can’t access the Sphere attributes, it isn’t built yet. But we can add methods, share dependencies with other modules, or apply other changes like a transform on its Mesh.

Modules in the array are executed one after another. That’s why order matters.

3. manager(manager) is executed. This function provides access to the manager object. The module can communicate with other modules that exist in the app context.

4. integrate(self) is then executed. In this function, this within the function scope represents the component’s instance. The module instance is exposed by the self argument.

5. build() is then invoked, the component generates the THREE.Mesh instance.

Pic. 6: build() method inside WHS.Sphere class

6. bridge (material) is executed. This is where our module accesses the geometry of the component and applies texture(s) to its material.

The code below shows the bridge logic of our TextureModule which gets applied to our component. Fulfilling its role of applying its own texture(s) to the material.

Pic 7. Fragment of code from TextureModule

The bridge returns the material.

7. bridge (mesh) is executed. The module can access the component’s mesh object. (see Pic. 6).

8. Component executes the wrap() method. This is when all transforms params are applied to the Mesh.

Let’s see how the Texture Module applied the texture looks like on a WHS.Box, also added a few point lights.

Example that uses TextureModule. https://whs-dev.surge.sh/examples/?lights/point

The key thing to remember, is that modules are re-usable throughout the project, can be exported and shared across teams. Plenty of useful modules to accomplish common effects such as the texturing we applied in this example are already available to use. Writing your own module involved following the steps shown in the Life Cycle of a module.

I hope this walkthrough of the inner parts of WhitestormJS was helpful to you! Hit the 💚 and share this if you enjoyed the article - 😊 - It will motivate us to write more.

You can join us on Discord, say hi, ask anything about whs, three.js or 3d in general.

--

--

Alexander Buzin
WhitestormJS Framework

🚀 Technical founder & startup enthusiast. 10+ years in the IT industry. Featured on hackernoon & TechCrunch