File: zipflc.ini

package info (click to toggle)
povray 1%3A3.7.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 146,780 kB
  • sloc: cpp: 845,005; ansic: 122,118; sh: 34,206; pascal: 6,420; asm: 3,355; ada: 1,681; makefile: 1,387; cs: 879; awk: 590; perl: 245; xml: 95
file content (31 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
;; Persistence Of Vision Raytracer version 3.7 sample INI file.
;; ZIPFLC.INI
;;
;; Assuming Input_File=myfile.pov
;;  this INI creates a myfile.zip to hold all output files
;;  and then creates myfile.flc from it.
;;
;; Requires pkzip.exe to zip/unzip
;; Requires dta.exe to create flc
;; Requires exists.exe which is included in POV-Ray distribution.
;; If exists.exe is not available, comment out both Pre_Scene_... lines.
;;

Output_to_File=On
Pre_Scene_Command=exists %s.flc     ;;If myfile.flc already exists
Pre_Scene_Return=-q                 ;;  skip entire scene
Pre_Frame_Command=pkzip -vb %s %o   ;;Test if myfile.tga in myfile.zip
Pre_Frame_Return=-s                 ;;  if no error, skip this frame
Post_Frame_Command=pkzip -mu %s %o  ;;Move myfile.tga to myfile.zip
                                    ;;  This removes tga from disk
Post_Frame_Return=f                 ;;If error, crash
;;
;; There is an unsolved problem when running dta directly.
;; Preliminary results show that calling it via command.com fixes
;; the problem but as yet, we don't know why.
;;
Post_Scene_Command=command /C dta /o%s.flc /R%w,%h %s.zip  ;;make myfile.flc
Post_Scene_Return=f                 ;;If error, crash
Pause_When_Done=Off
Continue_Trace=On                ;;Lets you resume
Test_Abort=On                    ;;Lets you interrupt