aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/bscv/modules/motion/VanillaFlight.java
blob: 214b141c77d7e2c50c5ee67e567d3be75062fde4 (plain) (blame)
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
package ftbsc.bscv.modules.motion;

import com.google.auto.service.AutoService;
import ftbsc.bscv.ICommons;
import ftbsc.bscv.api.ILoadable;
import ftbsc.bscv.modules.QuickModule;
import ftbsc.bscv.tools.Setting;
import net.minecraft.client.entity.player.ClientPlayerEntity;
import net.minecraft.network.play.client.CPlayerPacket;
import net.minecraft.util.math.vector.Vector3d;
import net.minecraftforge.common.ForgeConfigSpec;
import net.minecraftforge.event.TickEvent;
import net.minecraftforge.event.TickEvent.Phase;
import net.minecraftforge.eventbus.api.SubscribeEvent;

@AutoService(ILoadable.class)
public class VanillaFlight extends QuickModule implements ICommons {

   @Override
   protected int getDefaultKey() {
      return UNBOUND;
   }

   private enum AntikickMode {
      NONE,
      PACKET,
      FORCED
   }

   public final ForgeConfigSpec.ConfigValue<Boolean> force;
   public final ForgeConfigSpec.ConfigValue<Double>  speed;
   public final ForgeConfigSpec.ConfigValue<AntikickMode> antikick;
   public final ForgeConfigSpec.ConfigValue<Double>  antikick_magnitude;
   public final ForgeConfigSpec.ConfigValue<Integer> antikick_cycle;

   private int tick = 0;

   public VanillaFlight() {
      super();

      this.force = Setting.Bool.builder()
         .name("force")
         .comment("force enable flight on user")
         .fallback(false)
         .build(this);

      this.speed = Setting.Decimal.builder()
         .min(0.)
         .fallback(0.05)
         .name("speed")
         .comment("flight speed to set")
         .build(this);

      this.antikick = Setting.Switch.builder(AntikickMode.class)
         .fallback(AntikickMode.NONE)
         .name("antikick")
         .comment("prevent vanilla flight kick by descending")
         .build(this);

      this.antikick_magnitude = Setting.Decimal.builder()
         .min(0.)
         .fallback(0.032)
         .name("magnitude")
         .comment("magnitude of antikick push")
         .build(this);

      this.antikick_cycle = Setting.Number.builder()
         .min(1)
         .max(80)
         .fallback(70)
         .name("cycle")
         .comment("how often to run antikick routine")
         .build(this);
   }

   private boolean couldFlyBefore = false;
   private float flyingSpeedBefore = 0.05f;

   @SubscribeEvent
   public void onTick(TickEvent.ClientTickEvent event) {
      if (event.phase == Phase.END) return;
      if (MC.player == null) return;

      MC.player.abilities.mayfly = true;
      MC.player.abilities.setFlyingSpeed(this.speed.get().floatValue());
      if (this.force.get()) {
         MC.player.abilities.flying = true;
      }

      this.tick = ( this.tick + 1 ) % this.antikick_cycle.get();
      Vector3d pos = MC.player.position();

      if (this.tick == 0) {
         switch (this.antikick.get()) {
            case PACKET:
               MC.player.connection.send(
                  new CPlayerPacket.PositionPacket(pos.x, pos.y - this.antikick_magnitude.get(), pos.z, false)
               );
               break;
            case FORCED:
               MC.player.setPos(pos.x, pos.y - this.antikick_magnitude.get(), pos.z);
               break;
            case NONE:
               break;
         }
      }
   }

   @Override
   public void enable() {
      super.enable();
      this.tick = 0;
      if (MC.player != null) {
         this.couldFlyBefore = MC.player.abilities.mayfly;
         this.flyingSpeedBefore = MC.player.abilities.getFlyingSpeed();
      }
   }

   @Override
   public void disable() {
      super.disable();
      ClientPlayerEntity player = MC.player;
      if (player != null) {
         player.abilities.mayfly = this.couldFlyBefore;
         player.abilities.setFlyingSpeed(this.flyingSpeedBefore);
         if (this.force.get()) {
            player.abilities.flying = false;
         }
      }
   }
}