Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

44
LINES

< > BotCompany Repo | #1001367 // Jumping Heart (jumps between two machines) with hyperMove (faster)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1756L/13K/40K).

!747

m {
  static volatile long beatCount;
  static volatile int delay = 1000;
  static long booted;
  static volatile boolean loud = true;
  static int jumpEvery = 10;
  
  // We alternate between two machines as a test.
  static S machine1 = "teubizvjbppd";
  static S machine2 = "dhtvkmknsjym";
  
  p {
    booted = now();
    readLocally("beatCount");
    makeAndroid3("Heart.");
    print("Beat count " + beatCount + ". Beating at 1/" + delay + " ms...");
    
    while (true) {
      if (loud)
        print("beep!");
      ++beatCount;
      saveLocally("beatCount");
      if ((beatCount % jumpEvery) == 0) {
        print("Now I should be moved!");
        hyperMove(machine1, machine2);
        System.exit(0);
      }
      sleep(delay);
    }
  }
  
  static synchronized S answer(S s, L<S> history) {
    if (match3("get beat count", s))
      return "" + beatCount;
    if (match3("get delay", s))
      return "" + delay;
    if (match3("booted when", s))
      return "" + booted;
      
    return null;
  }
}

Author comment

Began life as a copy of #1001358

download  show line numbers  debug dex  old transpilations   

Travelled to 16 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, dhtvkmknsjym, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, teubizvjbppd, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1001367
Snippet name: Jumping Heart (jumps between two machines) with hyperMove (faster)
Eternal ID of this version: #1001367/1
Text MD5: 8ab17bca2e20eaf697d87875943421c4
Transpilation MD5: ce00a53895d42a8ef87e608d6d351a90
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-10-11 20:54:39
Source code size: 1072 bytes / 44 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 611 / 651
Referenced in: [show references]