Advertisement
SforzandoCF

blorkx

Apr 2nd, 2025
476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 8.90 KB | None | 0 0
  1. package com.sforzando.jscratch2;
  2.  
  3. public class BlockReader {
  4.     public void read (JSONObject input, ScratchProject project, ScratchTarget target) {
  5.         String[] ids = new String[input.length()];
  6.         Object[] jblocks = new Object[input.length()];
  7.         Iterator<String> keys = input.keySet().iterator();
  8.         {
  9.             int keysI = 0;
  10.             while (keys.hasNext()) {
  11.                 ids[keysI] = keys.next();
  12.                 jblocks[keysI] = input.get(ids[keysI]);
  13.                 keysI++;
  14.             }
  15.         }
  16.         ScratchBlock[] blocks = new ScratchBlock[jblocks.length];
  17.         for (int i = 0; i < ids.length; i++)
  18.             blocks[i] = parseBlock(jblocks[i], project, target);
  19.         target.addBlocks(blocks);
  20.     }
  21.    
  22.     public static ScratchBlock parseBlock (Object o, ScratchProject project, ScratchTarget target) {
  23.             if (o instanceof JSONArray) {
  24.                 JSONArray array = (JSONArray) o;
  25.                 int id =  array.getInt(0);
  26.                 switch (id) {
  27.                     case 4:
  28.                         double value = array.getDouble(1);
  29.                         return new NumberBlock(value, false);
  30.                     case 5:
  31.                         double value = array.getDouble(1);
  32.                         return new NumberBlock(value, true);
  33.                     case 6:
  34.                         int value = array.getInt(1);
  35.                         return new NumberBlock(value, true);
  36.                     case 7:
  37.                         int value = array.getInt(1);
  38.                         return new NumberBlock(value, false);
  39.                     case 8:
  40.                         int value = array.getInt(1);
  41.                         return new AngleBlock(value);
  42.                     case 9:
  43.                         String value = array.getString(1);
  44.                         Color color;
  45.                         if (value.length() == 7) color = new Color(Integer.parseInt(value.substring(1), 16));
  46.                         else if (value.length() == 9) {
  47.                             int alpha = Integer.parseInt(value.substring(7), 16);
  48.                             int r = Integer.parseInt(value.substring(1, 2), 16);
  49.                             int g = Integer.parseInt(value.substring(3, 4), 16);
  50.                             int b = Integer.parseInt(value.substring(5, 6), 16);
  51.                             color = new Color(r, g, b, alpha);
  52.                         } else break;
  53.                         return new ColorBlock(color);
  54.                     case 10:
  55.                         String value = array.getString(1);
  56.                         return new StringBlock(value);
  57.                     case 11:
  58.                         String name = array.getString(1);
  59.                         String id = array.getString(2);
  60.                         return new BroadcastBlock(name, id);
  61.                     case 12:
  62.                         String name = array.getString(1);
  63.                         String id = array.getString(2);
  64.                         return new VariableBlock(name, id);
  65.                     case 13:
  66.                         String name = array.getString(1);
  67.                         String id = array.getString(2);
  68.                         int x = array.getInt(3);
  69.                         int y = array.getInt(4);
  70.                         ScratchBlock block = new VariableBlock(name, id);
  71.                         block.setPosition(x, y);
  72.                         return block;
  73.                 }
  74.             }
  75.             JSONObject json = (JSONObject) o;
  76.             ScratchBlockType<? extends ScratchBlock> type = ScratchBlockTypes.get(json.getString("opcode"));
  77.             Supplier<String> next = json.getString("next") == null || type.isFinal() || checkStopFinality(json) ? () -> null : () -> blocks[indexOf(json.getString("next"), ids)];
  78.             Supplier<String> parent = json.getString("parent") == null || json.getBoolean("topLevel") ? () -> null : () -> blocks[indexOf(json.getString("parent"), ids)];
  79.             ScratchBlockInput[] inputs = new ScratchBlockInput[json.getJSONObject("inputs").length()];
  80.             Iterator<String> inputKeys = json.getJSONObject("inputs").keySet();
  81.             int j = 0;
  82.             while (inputKeys.hasNext()) {
  83.                 String next = inputKeys.next();
  84.                 inputs[j] = type.parseInput(next, json.getJSONObject("inputs").get(next));
  85.                 j++;
  86.             }
  87.             ScratchBlockInput[] fields = new ScratchBlockInput[json.getJSONObject("fields").length()];
  88.             Iterator<String> fieldKeys = json.getJSONObject("fields").keySet();
  89.             int j = 0;
  90.             while (fieldKeys.hasNext()) {
  91.                 String next = fieldKeys.next();
  92.                 fields[j] = type.parseField(next, json.getJSONObject("inputs").get(next));
  93.                 j++;
  94.             }
  95.         boolean shadow = json.getBoolean("shadow");
  96.         boolean topLevel = json.getBoolean("topLevel");
  97.         if (type.hasMutations())
  98.             return type.create(next, parent, inputs, fields, shadow, topLevel, type.createMutations(json.getJSONObject("mutation")));
  99.         else
  100.             return type.create(next, parent, inputs, fields, shadow, topLevel);
  101.     }
  102.    
  103.     public static boolean checkStopFinality (JSONObject json) {
  104.         if (!json.getString("opcode").equals("control_stop")) return false;
  105.         return json.getJSONObject("mutation").getBoolean("hasNext");
  106.     }
  107. }
  108.  
  109. package com.sforzando.jscratch2.scratch.blocks;
  110.  
  111. import com.sforzando.jscratch2.scratch.blocks.ScratchBlock.Mutation;
  112.  
  113. public class ScratchBlockType<T extends ScratchBlock> {
  114.     private final boolean isFinal;
  115.     private final boolean hasMutations;
  116.    
  117.     private final String opcode;
  118.    
  119.     private final BlockBuilder<T> builder;
  120.    
  121.     public ScratchBlockType (String opcode, BlockBuilder<T> builder) {
  122.         this.hasMutations = opcode.equals("control_stop") || opcode.equals("procedures_call") || opcode.equals("procedures_prototype");
  123.         this.isFinal = opcode.equals("control_forever") || opcode.equals("control_delete_this_clone");
  124.         this.opcode = opcode;
  125.         this.builder = builder;
  126.     }
  127.    
  128.     public boolean equals (Object other) {
  129.         if (other.hashCode() == this.hashCode()) return true;
  130.         if (other instanceof ScratchBlockType && other.opcode == this.opcode) return true;
  131.         return false;
  132.     }
  133.    
  134.     public boolean hasMutations () {
  135.         return this.hasMutations;
  136.     }
  137.    
  138.     public boolean isFinal () {
  139.         return this.isFinal;
  140.     }
  141.    
  142.     public Map<String, Object> createMutations (JSONObject obj) {
  143.         if (this.opcode.equals("control_stop")) return Map.<String, Object>of("isFinal", Boolean.valueOf(!obj.getBoolean("hasNext")));
  144.         if (this.opcode.equals("procedures_call") || this.opcode.equals("procedures_prototype")) {
  145.             HashMap<String, Object> mutations = new HashMap<String, Object>();
  146.             String signature = obj.getString("proccode");
  147.             mutations.put("name", signature.replaceAll("%b", "{}").replaceAll("%s", "{}"));
  148.             char[] chars = signature.toCharArray();
  149.             ArrayList<String> args = new ArrayList<String>();
  150.             for (int i = 0; i < chars.length - 1; i++)
  151.                 if (chars[i] == '%') {
  152.                     if (chars[i + 1] == 'b')
  153.                         args.add("<>");
  154.                     if (chars[i + 1] == 's')
  155.                         args.add("()");
  156.                 }
  157.             String[] matchedArgs = new String[args.size()];
  158.             for (int i = 0; i < args.size(); i++)
  159.                 matchedArgs[i] = args.get(i).charAt(0) + new JSONArray(obj.getString("argumentids")).getString(i) + args.get(i).charAt(1);
  160.             mutations.put("arguments", matchedArgs);
  161.             mutations.put("refreshScreen", Boolean.valueOf(!obj.getBoolean("warp")));
  162.             if (this.opcode.equals("procedures_prototype")) {
  163.                 String[] matchedNames = new String[args.size()];
  164.                 for (int i = 0; i < args.size(); i++)
  165.                     matchedNames[i] = args.get(i).charAt(0) + new JSONArray(obj.getString("argumentnames")).getString(i) + args.get(i).charAt(1);
  166.                 mutations.put("argumentNames", matchedNames);
  167.             }
  168.             return mutations;
  169.         }
  170.         return null;
  171.     }
  172.    
  173.     public ScratchBlockInput parseInputs (String type, Object obj) {
  174.         if ((this.opcode.equals("argument_reporter_string") || this.opcode.equals("argument_reporter_boolean")) && type.equals("VALUE"))
  175.             return new SimpleStringBlockInput(((JSONArray) obj).getString(0));
  176.         if ((this.opcode.equals("argument_reporter_string") || this.opcode.equals("argument_reporter_boolean")) && type.equals("VALUE"))
  177.             return new SimpleStringBlockInput(((JSONArray) obj).getString(0));
  178.        
  179.     }
  180.    
  181.     public ScratchBlockInput parseFields (String type, JSONObject json) {
  182.     }
  183. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement