home *** CD-ROM | disk | FTP | other *** search
- //
- // Module Name: CODE_DOC.COD
- //
- Program Formatter and Procedure Table of Contents Builder
- ---------------------------------------------------------
- $Version: $
-
- Notes:
-
- - This template MUST only be used with the standalone DGEN.EXE (template
- interpreter). Syntax C>dgen -t code_doc.gen
-
- - This program makes a call to the DOS SORT.EXE program. You should make
- sure that your DOS PATH statement contains the directory where SORT.EXE
- resides.
-
- - For printer formatting codes, only Epson & HP Laserjet II are supported!
- You could add your own printer codes to the "printer_setup()" udf at the
- bottom of this template.
-
- - The output of this template is a ".otl" file (for outline) with the same
- root file name. For example Form.cod -> Form.otl after run through this
- template.
- {
- include "builtin.def"; // Builtin Functions
-
- var cod_filename, temp, line_counter, crlf, laser, page, page_length,
- sort_column, sort_string, start_print, end_print, set_printer, reset,
- first_time, total_lines;
-
- crlf = chr(10)
- line_counter = 0
- page = 1
- first_time = 1
- cod_filename = askuser(" Enter program name to make Outline for (required) ",cod_filename,12)
- laser = " "
- do while at( upper(laser), "YN") == 0
- laser = upper(askuser(" Is report to be sent to a HP Laser ? (Y/N)","Y",1))
- enddo
-
- Printer_setup()
-
- // Determine column number for the DOS SORT program
- sort_column = fileroot(upper(cod_filename)) == "PRG" ? "10" : "1";
- page_length = 78
-
- if (!cod_filename or !Textopen(cod_filename)) then goto nogen;
-
- if !create(fileroot(cod_filename)+".tm1") then goto nogen; endif
-
- Process_table_of_contents()
-
- cls()
-
- Sort_table_of_contents()
- Page_Header();
- }
-
-
- Table of Contents for Procedures of {cod_filename}
- -------------------------------------------------------------------------------
-
- {
- Print_table_of_contents();
- }
-
- Source Follows:
- ---------------
-
-
- {
- Print_cod_file()
- nogen:
- return 0;
- //---------------------------------------------------------------------------
- // UDF's follow
- //---------------------------------------------------------------------------
-
- define process_table_of_contents()
- cls()
- say_center(13, "Procedure found:")
- do
- temp = textgetl();
- while temp != eof
- line_counter = line_counter + 1
-
- nmsg("Processing line: " + alltrim(str(line_counter)))
-
- if db_proc() or cod_proc() then
-
- say(15, 0, space(80))
- say(16, 0, space(80))
- say_center(15, temp)
-
- pmsg("Found procedure at line: " + alltrim(str(line_counter)))
- if cod_proc() then
- temp = substr(temp,at("DEFINE ",temp)+8)
- print(alltrim(substr(temp,1,73)))
- else
- print(alltrim(substr(temp,1,73)))
- endif
- tabto(75)
- print(line_counter + crlf)
- endif
- enddo
- total_lines = line_counter
- enddef
-
- define sort_table_of_contents()
- // Prepare to sort the Table of contents
- create(fileroot(cod_filename)+".tm3")
- sort_string = "SORT /+" + sort_column + " <" +
- fileroot(cod_filename) + ".tm1 >" +
- fileroot(cod_filename)+".tm2"
- // Execute the DOS SORT program
- exec(sort_string)
- create(fileroot(cod_filename)+".otl")
- print(reset + set_printer + crlf)
- enddef
-
- define page_Header()
- pageject()
- first_time = 0
- print(alltrim(date()))
- tabto(35)
- print(upper(cod_filename))
- tabto(70)
- print("Page: " + alltrim(str(page)) + crlf + crlf)
- return
- enddef
-
- define print_table_of_contents()
- // Process sorted file so that it has page header information
- textopen(fileroot(cod_filename)+".tm2")
- line_counter = 0
- pmsg("Processing Sorted Table of contents")
- do
- temp = textgetl();
- while temp != eof
- if curline() > page_length then
- page += 1
- Page_Header()
- endif
- line_counter = line_counter + 1
- nmsg("Processing line: "+alltrim(str(line_counter)))
- print(alltrim(temp) + crlf)
- enddo
- textclose()
- exec("DEL " + fileroot(cod_filename) + ".tm? > nul")
- // Start source listing on next page
- page += 1
- Page_Header()
- enddef
-
- define print_cod_file()
- Textopen(cod_filename)
- nmsg(" ")
- pmsg("Adding "+ cod_filename + " w/line numbers to the bottom of the outline")
- line_counter = 0
- do
- temp = textgetl();
- while temp != eof
- if curline() > page_length then
- page += 1
- Page_Header()
- endif
- line_counter = line_counter +1
- print(line_counter)
- tabto(5)
-
- if db_proc() or cod_proc() then
- print(" "+substr(temp,1,at(" ",temp)))
- print(start_print +
- rtrim(substr(temp,at(" ",temp)+1)) + end_print + crlf)
- else
- print(" "+rtrim(temp)+crlf)
- endif
- enddo
- textclose()
- print(reset + pageject())
- enddef
-
- define cod_proc()
- if ( ( at("DEFINE ",upper(temp)) >= 1 and at("DEFINE ",upper(temp)) <= 6)
- and (at("*", upper(temp)) != 1 or at("NOTE ", upper(temp)) != 1)
- and at("BOX ", upper(temp)) == 0
- and at("WINDOW ", upper(temp)) == 0
- and at("POPUP ", upper(temp)) == 0
- and at("BAR ", upper(temp)) == 0
- and at("PAD ", upper(temp)) == 0
- and at("MENU ", upper(temp)) == 0
- and fileroot(upper(cod_filename)) != "PRG"
- ) then
- return 1
- else
- return 0
- endif
- enddef
-
- define db_proc()
- if at("PROCEDURE ", upper(temp)) == 1 or at("FUNCTION ", upper(temp)) == 1 then
- return 1
- else
- return 0
- endif
- enddef
-
- define printer_setup()
- if laser == "Y" then
- // HP Laser Jet II
- reset = "E" // Reset
- set_printer = "&k2G&a5L&k4S&l8D" // Line Term, 5 char left margin, 8 lpi, and 12 CPI
- start_print = "&k0S"+"(s3B" // Bold 10cpi
- end_print = "&k4S"+"(s0B" // Line print 12cpi
- else
- // Epson
- reset = "@" // Reset
- set_printer = "lM" // 5 char left margin, 8lpi, Elite
- start_print = "W1E" // Expanded, Bold
- end_print = "W0FM" // Off Expanded, Off Bold, 12cpi
- endif
- enddef
- }
-
-