-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInput.cs
151 lines (126 loc) · 4.49 KB
/
Input.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
using Godot;
using Leopotam.EcsLite;
using Leopotam.EcsLite.Di;
[Editor]
public struct Player { }
public struct MouseLeft
{
public bool Pressed;
}
public struct MouseRight
{
public bool Pressed;
}
[Editor]
public struct Move
{
public float X;
public float Y;
}
public struct Reloading
{
public ulong RemainingTicks;
}
public class InputSystem : IEcsInitSystem, IEcsRunSystem
{
[EcsWorld] readonly EcsWorld world = default;
[EcsShared] readonly Shared shared = default;
[EcsPool] readonly EcsPool<MouseLeft> mouseLefts = default;
[EcsPool] readonly EcsPool<MouseRight> mouseRights = default;
[EcsPool] readonly EcsPool<Reloading> reloadings = default;
[EcsPool] readonly EcsPool<Move> moves = default;
[EcsPool] readonly EcsPool<Tick> ticks = default;
[EcsPool] readonly EcsPool<Direction> directions = default;
[EcsPool] readonly EcsPool<Expiration> expirations = default;
[EcsPool] readonly EcsPool<PhysicsNode> physicsNodes = default;
public void Init(EcsSystems systems)
{
var world = systems.GetWorld();
var shared = systems.GetShared<Shared>();
shared.Input = world.NewEntity();
mouseLefts.Add(shared.Input);
mouseRights.Add(shared.Input);
}
public void QueueMove()
{
var game = shared.Game;
var position = game.ToLocal(game.GetViewport().GetMousePosition());
foreach (var entity in world.Filter<Player>().Inc<RenderNode>().End())
{
ref var move = ref moves.Ensure(entity);
move.X = position.x;
move.Y = position.y;
}
}
public void Run(EcsSystems systems, InputEvent @event)
{
switch (@event)
{
case InputEventMouseButton mouseButton:
{
if ((mouseButton.ButtonIndex & (int)ButtonList.MaskLeft) != 0)
{
ref var mouseLeft = ref mouseLefts.Get(shared.Input);
mouseLeft.Pressed |= mouseButton.IsPressed();
}
else if ((mouseButton.ButtonIndex & (int)ButtonList.MaskRight) != 0)
{
ref var mouseRight = ref mouseRights.Get(shared.Input);
mouseRight.Pressed |= mouseButton.IsPressed();
if (mouseRight.Pressed)
{
QueueMove();
}
}
}
break;
}
}
public void Run(EcsSystems systems)
{
var game = shared.Game;
var mousePosition = game.ToLocal(game.GetViewport().GetMousePosition());
ref var mouseLeft = ref mouseLefts.Get(shared.Input);
ref var mouseRight = ref mouseRights.Get(shared.Input);
var tick = ticks.Get(shared.Physics).Value;
foreach (var entity in world.Filter<Reloading>().End())
{
ref var reloading = ref reloadings.Get(entity);
reloading.RemainingTicks--;
if (reloading.RemainingTicks <= 0)
{
reloadings.Del(entity);
}
}
foreach (var entity in world.Filter<Player>().Inc<PhysicsNode>().Exc<Reloading>().End())
{
if (mouseLeft.Pressed)
{
var playerNode = physicsNodes.Get(entity).Node;
var directionVec = playerNode.Position
.DirectionTo(mousePosition)
.Normalized();
var node = GD.Load<PackedScene>("res://bullet.tscn").Instance<Node2D>();
node.Position = playerNode.Position;
game.AddChild(node);
var bullet = game.DiscoverEntity(node);
ref var direction = ref directions.Add(bullet);
direction.X = directionVec.x;
direction.Y = directionVec.y;
ref var expiration = ref expirations.Add(bullet);
expiration.Tick = PhysicsSystem.MillisToTicks(1 * 1000) + tick;
ref var reloading = ref reloadings.Ensure(entity);
reloading = new Reloading()
{
RemainingTicks = PhysicsSystem.MillisToTicks(250)
}; ;
}
}
mouseLeft.Pressed = Input.IsMouseButtonPressed((int)ButtonList.MaskLeft);
mouseRight.Pressed = Input.IsMouseButtonPressed((int)ButtonList.MaskRight);
if (mouseRight.Pressed)
{
QueueMove();
}
}
}