shithub: orca

Download patch

ref: e29a3d1b28272f318b44a0c66dc9c44c3e8e84c7
parent: 2213ac8396a10ed18639d77fcfdc99270d015b95
parent: 0b3dd23d4eb00cd3d0db4deb57ea81499d6a956d
author: Nicola Pisanti <nicola@npisanti.com>
date: Mon May 20 18:53:03 EDT 2019

Merge pull request #32 from npisanti/master

replaces zig with lerp

--- a/sim.c
+++ b/sim.c
@@ -245,7 +245,7 @@
   _('W', movement)                                                             \
   _('X', teleport)                                                             \
   _('Y', yump)                                                                 \
-  _('Z', zig)
+  _('Z', lerp)
 
 #define MOVEMENT_CASES                                                         \
   'N' : case 'n' : case 'E' : case 'e' : case 'S' : case 's' : case 'W'        \
@@ -747,26 +747,21 @@
   POKE(0, 1, PEEK(0, -1));
 END_OPERATOR
 
-BEGIN_OPERATOR(zig)
+BEGIN_OPERATOR(lerp)
   LOWERCASE_REQUIRES_BANG;
-  Glyph* gline = gbuffer + width * y;
-  gline[x] = '.';
-  if (x + 1 == width)
-    return;
-  if (gline[x + 1] == '.') {
-    gline[x + 1] = This_oper_char;
-    mbuffer[width * y + x + 1] |= (U8)Mark_flag_sleep;
-  } else {
-    Usz n = 256;
-    if (x < n)
-      n = x;
-    for (Usz i = 0; i < n; ++i) {
-      if (gline[x - i - 1] != '.') {
-        gline[x - i] = This_oper_char;
-        break;
-      }
-    }
-  }
+  PORT(0, -1, IN);
+  PORT(0, 1, IN);
+  PORT(1, 0, IN | OUT);
+  Glyph g = PEEK(0, -1);
+  Isz rate = 1;
+  if (g != '.' && g != '*')
+    rate = (Isz)index_of(g);
+  Isz target = (Isz)index_of(PEEK(0, 1));
+  Isz val = (Isz)index_of(PEEK(1, 0));
+  Isz mod = (val <= target - rate)
+                ? rate
+                : ((val >= target + rate) ? -rate : target - val);
+  POKE(1, 0, glyph_of((Usz)(val + mod)));
 END_OPERATOR
 
 //////// Run simulation