Skip to content

Commit 0a03a77

Browse files
committed
Move Rendering to its own file.
1 parent 1fcd901 commit 0a03a77

File tree

4 files changed

+92
-8
lines changed

4 files changed

+92
-8
lines changed

docs/Mod Development/Blocks.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ This component determines a few properties of your block, namely if it is a cube
4646
### `Category`
4747
This is the category (equivalent to a creative tab in Minecraft) that this block belongs to.
4848

49-
### `ItemRenderer`
50-
This handles the rendering of the block in your inventory and hand.
51-
5249
### `Renderer`
5350
This is responsible for rendering the block in the world. In the example above, `StaticRenderer` is used but there are a few others you can use as well.
5451

@@ -78,6 +75,8 @@ To render your block you have several options:
7875
- Use any of the other built-in NOVA renderers
7976
- Create your own block renderer
8077
78+
More information can be found on the [Rendering](Rendering.md) page.
79+
8180
### `BlockRenderPipeline`
8281
This is used for rendering simple cubes.
8382

docs/Mod Development/Items.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class ItemScrewdriver extends Item {
1111

1212
public ItemScrewdriver() {
1313
components.add(Category.TOOLS);
14-
components.add(new ItemRenderer()).setTexture(NovaItem.screwTexture); // TODO: Deprecated
14+
components.add(new StaticRenderer().onRender(new ItemRenderPipeline(this).withTexture(NovaItem.screwTexture).build()));
1515

1616
events.on(UseEvent.class).bind(event -> event.action = true);
1717
}
@@ -26,8 +26,8 @@ There are some components you will probably always want to implement in your ite
2626
### `Category`
2727
This is the category (equivalent to a creative tab in Minecraft) that this item belongs to.
2828

29-
### `ItemRenderer`
30-
This handles the rendering of the item in your inventory and hand.
29+
### `Renderer`
30+
This handles the rendering of the item in your inventory and hand. In the example above, `StaticRenderer` is used but there are a few others you can use as well.
3131

3232
## Special Interfaces
3333
### `Syncable`
@@ -40,9 +40,11 @@ Examples include: Electric charge of batteries, amount of fuel in a canister, et
4040
## Rendering
4141
To render your item you have several options:
4242

43-
- Use the `ItemRenderer` (Deprecated)
43+
- Use the `StaticRenderer` and the `ItemRenderPipeline`.
4444
- Use any of the other built-in NOVA renderers
4545
- Create your own item renderer
4646

47-
### `ItemRenderer`
47+
More information can be found on the [Rendering](Rendering.md) page.
48+
49+
### `ItemRenderPipeline`
4850
This is used for rendering simple items with a single texture.

docs/Mod Development/Rendering.md

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
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+
```

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pages:
1717
- Blocks: Mod Development/Blocks.md
1818
- Items: Mod Development/Items.md
1919
- Events: Mod Development/Events.md
20+
- Rendering: Mod Development/Rendering.md
2021
- NOVA Development:
2122
- Development Workspace Setup: NOVA Development/Development Workspace Setup.md
2223
- Formatting: NOVA Development/Formatting.md

0 commit comments

Comments
 (0)