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

41
LINES

< > BotCompany Repo | #1000868 // "dialogHandler {" short-hand (JavaX translator)

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

Libraryless. Click here for Pure Java version (94L/2K/4K).

1  
// Syntax: dialogHandler { doSomething(io); }
2  
3  
!592 1000265 // auto-importer, standard function adder 
4  
5  
public class main {
6  
  public static void main(String[] args) throws Exception {
7  
    String s = loadMainJava();
8  
    
9  
    Pattern regex = Pattern.compile("dialogHandler\\s*\\{");
10  
    
11  
    for (int i = 0; i < 100; i++) {
12  
      Matcher matcher = regex.matcher(s);
13  
      if (!matcher.find())
14  
        break;
15  
16  
      System.out.println("Iteration " + (i+1));
17  
      int start = matcher.start(), end = matcher.end();
18  
      int endOfBlock = findEndOfBlock(s, end);
19  
      
20  
      String listener = "new DialogHandler() {\n" +
21  
        "public void run(final DialogIO io) {\n" +
22  
        s.substring(end, endOfBlock) + "\n}";
23  
      s = s.substring(0, start) + listener + s.substring(endOfBlock);
24  
    }
25  
    
26  
    saveMainJava(s);
27  
  }
28  
  
29  
  // start is the index AFTER the opening bracket
30  
  // returns index OF closing bracket
31  
  static int findEndOfBlock(String s, int start) {
32  
    int level = 1;
33  
    for (int i = start; i < s.length(); i++) {
34  
      if (s.charAt(i) == '{') ++level;
35  
      else if (s.charAt(i) == '}') --level;
36  
      if (level == 0)
37  
        return i;
38  
    }
39  
    return s.length();
40  
  }
41  
}

Author comment

Began life as a copy of #614

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1000868
Snippet name: "dialogHandler {" short-hand (JavaX translator)
Eternal ID of this version: #1000868/1
Text MD5: 1859a8dbdd118d77f1207ba1394286c5
Transpilation MD5: 41cb094ca1d07ede15f9e4458eed289c
Author: stefan
Category:
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2015-09-24 21:06:39
Source code size: 1225 bytes / 41 lines
Pitched / IR pitched: No / Yes
Views / Downloads: 705 / 4299
Referenced in: [show references]