home *** CD-ROM | disk | FTP | other *** search
/ Bila Vrana / BILA_VRANA.iso / 019A / PCBDEMO.ZIP / PCBDISK1.EXE / RIP / PPE / DEFLANG.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1993-01-01  |  353b  |  88 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.     String   STRING002
  21.     Int      INT001
  22.  
  23. ;------------------------------------------------------------------------------
  24.  
  25.     STRING002 = ReadLine(PCBDat(), 49)
  26.     FOpen 1, STRING002, 0, 0
  27.     FGet 1, STRING001
  28.     :LABEL001
  29.     If (Ferr(1)) Goto LABEL002
  30.     INT001 = INT001 + 1
  31.     If (Mid(STRING001, InStr(STRING001, ",") + 1, 1) == ",") Lang INT001
  32.     FGet 1, STRING001
  33.     Goto LABEL001
  34.     :LABEL002
  35.     FClose 1
  36.     End
  37.  
  38. ;------------------------------------------------------------------------------
  39. ;
  40. ; Usage report (before postprocessing)
  41. ;
  42. ; ■ Statements used :
  43. ;
  44. ;    1       End
  45. ;    2       Goto 
  46. ;    2       Let 
  47. ;    2       If 
  48. ;    1       FOpen 
  49. ;    1       FClose 
  50. ;    2       FGet 
  51. ;    1       Lang 
  52. ;
  53. ;
  54. ; ■ Functions used :
  55. ;
  56. ;    2       +
  57. ;    1       ==
  58. ;    1       !
  59. ;    1       Mid()
  60. ;    1       Ferr()
  61. ;    1       InStr()
  62. ;    1       PCBDat()
  63. ;    1       ReadLine()
  64. ;
  65. ;------------------------------------------------------------------------------
  66. ;
  67. ; Analysis flags : d
  68. ;
  69. ; d - Access PCBOARD.DAT ■ 2
  70. ;     Program gets the full pathname to PCBOARD.DAT, this may be usefull
  71. ;     for many PPE so they can find various informations on the system
  72. ;     (system paths, max number of lines in messages, ...) but it may also
  73. ;     be a way to gather vital informations.
  74. ;     ■ Search for : PCBDAT()
  75. ;
  76. ;------------------------------------------------------------------------------
  77. ;
  78. ; Postprocessing report
  79. ;
  80. ;    0       For/Next
  81. ;    0       While/EndWhile
  82. ;    0       If/Then or If/Then/Else
  83. ;    0       Select Case
  84. ;
  85. ;------------------------------------------------------------------------------
  86. ;                 AEGiS Corp - Break the routines, code against the machines!
  87. ;------------------------------------------------------------------------------
  88.