-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathProgram.cs
109 lines (88 loc) · 2.49 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Collections.Generic;
using System.Linq;
using Godot;
using Jitter2;
using Jitter2.Collision.Shapes;
using Jitter2.Dynamics;
using Jitter2.Dynamics.Constraints;
using Jitter2.LinearMath;
using Jitter2.SoftBodies;
public static class Conversion
{
public static Vector3 FromJitter(in JVector vec) => new Vector3(vec.X, vec.Y, vec.Z);
}
public partial class JitterCubes : MultiMeshInstance3D
{
private List<RigidBody> cubes = new();
public void AddCube(RigidBody body)
{
cubes.Add(body);
}
public void Clear() => cubes.Clear();
public override void _Ready()
{
Multimesh = new MultiMesh();
Multimesh.TransformFormat = MultiMesh.TransformFormatEnum.Transform3D;
Multimesh.Mesh = new BoxMesh();
Multimesh.Mesh.SurfaceSetMaterial(0, ResourceLoader.Load<Material>("res://box.material"));
base._Ready();
}
public override void _Process(double delta)
{
Multimesh.InstanceCount = cubes.Count;
for (int i = 0; i < cubes.Count; i++)
{
JMatrix mat = JMatrix.CreateFromQuaternion(cubes[i].Data.Orientation);
JVector pos = cubes[i].Data.Position;
Transform3D trans = Transform3D.Identity;
trans[0] = Conversion.FromJitter(mat.GetColumn(0));
trans[1] = Conversion.FromJitter(mat.GetColumn(1));
trans[2] = Conversion.FromJitter(mat.GetColumn(2));
trans[3] = Conversion.FromJitter(pos);
Multimesh.SetInstanceTransform(i, trans);
}
base._Process(delta);
}
}
public partial class Program : Node3D
{
private World world = null!;
private JitterCubes jitterCubes = null!;
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
var button = new Button();
button.Pressed += ResetScene;
button.Position = new Vector2(4, 4);
button.Text = "Reset scene";
jitterCubes = new JitterCubes();
AddChild(jitterCubes);
AddChild(button);
world = new World();
ResetScene();
}
private void ResetScene()
{
jitterCubes.Clear();
world.Clear();
// floor shape
RigidBody floor = world.CreateRigidBody();
floor.AddShape(new BoxShape(20));
floor.Position = new JVector(0, -10, 0);
floor.IsStatic = true;
for (int i = 0; i < 30; i++)
{
RigidBody body = world.CreateRigidBody();
body.AddShape(new BoxShape(1));
body.Position = new JVector(1, 0.5f + i * 4, 0);
body.Friction = 0.2f;
jitterCubes.AddCube(body);
}
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
world.Step(1.0f / 100.0f);
}
}