프로그래밍/Io

대화형 모드의 진법(radix) 변환 예제 with Io

Scripter 2008. 4. 30. 12:58

다음은  대화형 모드(interactive mode)에서 진법 변환(radix conversion)하는 Io 소스 코드이다.
메뉴는 주메뉴 Command: (S)et radix, (A)bout, (Q)uit or E(x)it
와 부메뉴 SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
로 구성되어 있으며, 진법 변환의 핵심은

         string fromBase(radix)    // 소스 코드의 40째 쥴 참조
         string toBase(radix)       // 소스 코드의 41째 쥴 참조

 이며, 지원되는 진법은 2진법에서 36진법 까지이다.



  1. /*
  2.  *  Filename: convertRadix.io
  3.  *            Convert radix in a interactive mode.
  4.  *
  5.  *  Execute: io convertRadix.io
  6.  *
  7.  *      Date:  2008/05/01
  8.  *    Author:  PH Kim   [ pkim (AT) scripts.pe.kr ]
  9.  */
  10. printUsage := method(
  11.     writeln("Usage: groovy convertRadix.groovy")
  12.     writeln("Convert radix in a interactive mode, where the maximum radix is 36.")
  13. )
  14. printAbout := method(
  15.     writeln("    About: Convert radix in a interactive mode.")
  16. )
  17. printMainMenu := method(
  18.     writeln("  Command: (S)et radix, (A)bout, (Q)uit or E(x)it")
  19. )
  20. printMainPrompt := method(
  21.     write("  Prompt> ")
  22. )
  23. printSubMenu := method(srcRadix, destRadix,
  24.     writeln("    Convert Radix_#{srcRadix} to Radix_#{destRadix}" interpolate)
  25.     writeln("    SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit")
  26. )
  27. printSubPrompt := method(
  28.     write("    Input Value>> ")
  29. )
  30. convertRadix := method(s, srcRdx, destRdx,
  31.     ret := "   "
  32.     e := try (
  33.         val := s fromBase(srcRdx)
  34.         ret = val asString toBase(destRdx) asUppercase
  35.         return( ret )
  36.     )
  37.     e catch(Exception,
  38.         writeln("    Error: The input string cantains some invalid character.")
  39.         ret = "????"
  40.     )
  41.     return( ret asMutable uppercase )
  42. )
  43. doConvert := method( stdin, srcRadix, destRadix,
  44.     line := ""
  45.     cmd := ""
  46.     srcStr := ""
  47.     destStr := ""
  48.     writeln("")
  49.     printSubMenu(srcRadix, destRadix)
  50.     while (true,
  51.         printSubPrompt()
  52.         cmd = stdin readLine
  53.         if ("main()" == cmd) then (
  54.             return
  55.         ) elseif ("exit()" == cmd or "quit()" == cmd) then (
  56.             exit(1)
  57.         )
  58.         e2 :=  try (
  59.             cmd fromBase(srcRadix)
  60.             srcStr = cmd
  61.             destStr = convertRadix(srcStr, srcRadix, destRadix)
  62.             writeln("        ( " .. srcStr .. " )_" .. srcRadix ..  "   --->   ( " .. destStr .. " )_" .. destRadix)
  63.             writeln("")
  64.         )
  65.         e2 catch (Exception,
  66.             writeln("        Conversion Exception" )
  67.             writeln("")
  68.         )
  69.     )
  70. )
  71. doStart := method(
  72.     line := ""
  73.     cmd := ""
  74.     srcRadix := 10
  75.     destRadix := 10
  76.     srcStr := ""
  77.     destStr := ""
  78.     onlyOnce := true
  79.     stdin := File standardInput
  80.     while (true,
  81.             writeln("")
  82.             if (onlyOnce) then (
  83.                 writeln("  The supported maximum radix is 36.")
  84.                 onlyOnce = false
  85.             )
  86.             printMainMenu()
  87.             printMainPrompt()
  88.             cmd = stdin readLine
  89.             if ("qQxX" findSeq(cmd) != nil and cmd size == 1) then (
  90.                 exit(0)
  91.             ) elseif ("aA" findSeq(cmd) != nil and cmd size == 1) then (
  92.                 printAbout()
  93.             ) elseif ("sS" findSeq(cmd) != nil and cmd size == 1) then (
  94.                 write("  Input the source and target radices (say, 16 2): ")
  95.                 line := stdin readLine
  96.                 tokens := line split(" ", "\t", ",")
  97.                 while (tokens size < 2,
  98.                     write("  Input the source and target radices (say, 16 2): ")
  99.                     line = stdin readLine
  100.                     tokens = line split(" ", "\t", ",")
  101.             )
  102.             srcRadix = tokens at(0) asNumber
  103.             destRadix = tokens at(1) asNumber
  104.             doConvert(stdin, srcRadix, destRadix)
  105.         )
  106.     )
  107. )
  108. // Begin here
  109. if (args size > 1 and "-h" == args at(1)) then (
  110.     printUsage()
  111.     exit(1)
  112. )
  113. doStart()



실행> io convertRadix.io

  The supported maximum radix is 36.
  Command: (S)et radix, (A)bout, (Q)uit or E(x)it
  Prompt> s
  Input the source and target radices (say, 16 2): 16 2

    Convert Radix_16 to Radix_2
    SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
    Input Value>> 1FF
        ( 1FF )_16   --->   ( 111111111 )_2

    Input Value>> main()

  Command: (S)et radix, (A)bout, (Q)uit or E(x)it
  Prompt> S
  Input the source and target radices (say, 16 2): 2 8

    Convert Radix_2 to Radix_8
    SubCommand: 'main()' to goto Main menu, 'exit()' or 'quit()' to exit
    Input Value>> 1011001
        ( 1011001 )_2   --->   ( 131 )_8

    Input Value>> main()

  Command: (S)et radix, (A)bout, (Q)uit or E(x)it
  Prompt> x




Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.