|
| 1 | +Rendering in NOVA is handled using `Renderer`s and pipelines. |
| 2 | + |
| 3 | +```java |
| 4 | +components.add(new StaticRenderer().onRender(new BlockRenderPipeline(this).withTexture(YourMod.blockTexture).build()); |
| 5 | +``` |
| 6 | + |
| 7 | +The code above adds a `StaticRenderer` to this object, then creates a `BlockRenderPipeline` for this object with the texture `blockTexture` provided by `YourMod`. After this is done, the `build()` method is called to finish the creation of the rendering pipeline and return a function for rendering the block. |
| 8 | + |
| 9 | +## Renderers |
| 10 | +The following are all the renderers you can use in nova. |
| 11 | + |
| 12 | +### `StaticRenderer` |
| 13 | +This is used for rendering providers that only redraw the renderer when either the provider notifies the renderer to do so, or in case of blocks, the world notifies the renderer. To notify the block's `StaticRenderer` to redraw the model, you would call the following code: |
| 14 | +
|
| 15 | +```java |
| 16 | +world().markStaticRender(position()); |
| 17 | +``` |
| 18 | +
|
| 19 | +### `DynamicRenderer` |
| 20 | +This is used for rendering providers that redraw the renderer every frame. This renderer should only be reserved for providers which truly need it. |
| 21 | +
|
| 22 | +## Render pipelines |
| 23 | +Actual rendering is done using pipelines. You can either provide your own, or use any of these pre-built ones. To finish rendering with a pre-built pipeline, you have to call the `build()` method on the instance. |
| 24 | +
|
| 25 | +```java |
| 26 | +components.add(new StaticRenderer().onRender(new RenderPipeline(this).build()); |
| 27 | +``` |
| 28 | +
|
| 29 | +Where `RenderPipeline` is an implementation of the `RenderPipeline` abstract class. The following are implementations of the `RenderPipeline` class that come with NOVA which can be used on any provider type. |
| 30 | +
|
| 31 | +### `BlockRenderPipeline` |
| 32 | +This is used for rendering simple cubes. |
| 33 | +
|
| 34 | +### `ItemRenderPipeline` |
| 35 | +This is used for rendering flat one voxel thick squares. |
| 36 | +
|
| 37 | +## Models |
| 38 | +NOVA also allows using of models to render renderable component providers. To load a model, you do the following: |
| 39 | +
|
| 40 | +```java |
| 41 | +providedModel = renderManager.registerModel(new ModelProvider(MOD_ID, "grinder")); |
| 42 | +``` |
| 43 | +
|
| 44 | +Where `ModelProvieder` is an implementation of the `ModelProvider` abstract class. The following are implementations of the `ModelProvider` class that come with NOVA. |
| 45 | +
|
| 46 | +To render the model, you have to provide your own rendering pipeline. The following is a simple way to render the model shown above. |
| 47 | +
|
| 48 | +```java |
| 49 | +components.add(new StaticRenderer().onRender(model -> { |
| 50 | + Model providedModel = YourMod.providedModel.getModel(); |
| 51 | +
|
| 52 | + if (providedModel instanceof MeshModel) |
| 53 | + ((MeshModel)providedModel).bindAll(YourMod.providedModelTexture); |
| 54 | +
|
| 55 | + model.children.add(grinderModel); |
| 56 | +} |
| 57 | +``` |
| 58 | +
|
| 59 | +### `WavefrontObjectModelProvider` |
| 60 | +Loads wavefront `.obj` models for use by your mod. Wavefront models are some of the most common model formats in use on the Internet. |
| 61 | +
|
| 62 | +### `TechneModelProvider` |
| 63 | +Loads Techne `.tcn` models for use by your mod. Techne was created to easily make entity models for Minecraft, but it has seen application of it's model format in other places as well, such as rendering blocks and items. |
| 64 | + |
| 65 | +### Advanced model usage |
| 66 | + |
| 67 | +It is also possible to do some more advanced things when rendering models. The following is the code of `BlockStateful`'s rendering pipeline from NOVA Blocks Example. |
| 68 | +
|
| 69 | +```java |
| 70 | +components.add(new StaticRenderer().onRender(model -> { |
| 71 | + Model grinderModel = NovaBlock.grinderModel.getModel(); |
| 72 | +
|
| 73 | + grinderModel |
| 74 | + .combineChildren("crank", "crank1", "crank2", "crank3") |
| 75 | + .matrix.rotate(new Rotation(RotationUtil.DEFAULT_ORDER, 0, 0, angle)); |
| 76 | +
|
| 77 | + if (grinderModel instanceof MeshModel) |
| 78 | + ((MeshModel)grinderModel).bindAll(NovaBlock.grinderTexture); |
| 79 | +
|
| 80 | + model.children.add(grinderModel); |
| 81 | +})); |
| 82 | +``` |
0 commit comments