summary refs log tree commit diff stats
path: root/src/interpolation.h
blob: 68a622123844625404d37269867bf2a5ca324864 (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
#ifndef INTERPOLATION_H_861230A8
#define INTERPOLATION_H_861230A8

class Interpolation {
public:

  void start(int length) {
    length_ = length;
    thus_ = 0;
  }

  void tick(double dt) {
    if (thus_ < length_) {
      thus_ += dt;
      if (thus_ >= length_) {
        thus_ = length_;
      }
    }
  }

  // Info

  double getProgress(double from, double to) const {
    return (to - from) / length_ * thus_ + from;
  }

  bool isComplete() const { return thus_ == length_; }

private:

  double progress_ = 0.0;
  double dest_ = 0.0;
  double start_ = 0.0;
  double length_ = 0.0;
  double thus_ = 0.0;
};

#endif /* end of include guard: INTERPOLATION_H_861230A8 */
s="n">evaluate_solvability(): var apclient = global.get_node("Archipelago") var effects = get_tree().get_root().get_node("Spatial/AP_Effects") var solvable = true var missing = [] if apclient._color_shuffle: for color in data["color"]: if not apclient._has_colors.has(color): missing.append(color) solvable = false if solvable: if effects.atbash_remaining > 0: self.get_parent().get_node("Viewport/GUI/Panel/Label").text = atbash_text else: self.get_parent().get_node("Viewport/GUI/Panel/Label").text = orig_text self.get_parent().get_node("Viewport/GUI/Panel/TextEdit").editable = true self.get_parent().get_node("Quad").get_surface_material(0).albedo_color = orig_color else: var missing_text = "Missing: " for thing in missing: missing_text += thing + ",\n" missing_text = missing_text.left(missing_text.length() - 2) self.get_parent().get_node("Viewport/GUI/Panel/Label").text = missing_text self.get_parent().get_node("Viewport/GUI/Panel/TextEdit").editable = false self.get_parent().get_node("Quad").get_surface_material(0).albedo_color = Color( 0.7, 0.2, 0.2 ) self.get_parent().get_node("Viewport").render_target_update_mode = 1