summaryrefslogtreecommitdiff
path: root/www/js/imachine.js
blob: 16d406fc21074adf4ba3fde421a2d253cb178852 (plain)
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
html5ks.imachine = (function () {
  "use strict";
  return {
    seen_scene: function (scene) {
      return !!html5ks.store.seen_scenes[scene];
    },
    scene_register: function (scene) {
      html5ks.store.seen_scenes[scene] = true;
    },
    start: function () {
      return this.run("imachine");
    },
    run: function (label) {
      var deferred = when.defer(),
          ilabel = typeof label === "string" ? html5ks.data.imachine[label] || label : label,
          i = 0,
          runInst = function () {
            var inst = ilabel[i++];
            console.log(inst);
            switch (typeof inst) {
              case "undefined":
                deferred.resolve();
                break;
              case "string": // jump_out
                if (!html5ks.data.imachine[inst]) {
                  throw new Error("label does not exist");
                }
                this.run(inst);
                break;
              case "object":
                var cmd = inst[0];
                var args = inst.slice(1);
                switch (inst[0]) {
                  case "iscene":
                    this.scene_register(inst[1]);
                  case "act_op":
                    switch (inst[1]) {
                      case "op_vid1":
                        html5ks.api.movie_cutscene("op_1").then(runInst);
                        break;
                      default:
                        html5ks.api[cmd].apply(html5ks.api, args).then(function () { runInst(); });
                    }
                    break;
                  case "imenu":
                    html5ks.api.iscene(args[0]).then(function (choice) {
                      var next = args[1][choice] || args[1].else;
                      return html5ks.imachine.run(typeof next[0] === "string" ? [next] : next).then(runInst);
                    });
                    break;
                  case "seen_scene":
                    var next;
                    if (this.seen_scene(inst[1])) {
                      next = inst[2];
                    } else {
                      next = inst[3];
                    }
                    // TODO: there's probably an easier way to do this
                    this.run(typeof next[0] === "string" ? [next] : next).then(runInst);
                    break;
                  case "attraction":
                    if (typeof inst[2] === "number") {
                      if (html5ks.store.attraction[inst[1]] > inst[2]) {
                        runInst(inst[3]);
                      } else {
                        runInst(inst[4]);
                      }
                    } else {
                      html5ks.store.attraction[inst[1]]++;
                      runInst();
                    }
                    break;
                  case "path_end":
                    // TODO: disp vid
                    deferred.resolve();
                    break;
                  default:
                    console.error("unknown imachine inst");
                    console.log(inst);
                }
            }
          }.bind(this);
      runInst();
      return deferred.promise;
    }
  };
}());