home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 25 / CDMM_25.iso / takeru / menu.dxr / 00228_save&load.ls < prev    next >
Encoding:
Text File  |  1996-09-04  |  4.2 KB  |  142 lines

  1. on initXObjs
  2.   set startPath to the pathName
  3.   if the machineType = 256 then
  4.     set utilXObjectPath to "MovUtils.DLL"
  5.     set fileioXObjectPath to "FILEIO.DLL"
  6.     openXLib(fileioXObjectPath)
  7.     set miscXObjectPath to "Misc_X.dll"
  8.   else
  9.     set utilXObjectPath to "MovieUtilities.XObj"
  10.     set miscXObjectPath to "Misc_X xobj"
  11.   end if
  12.   openXLib(utilXObjectPath)
  13.   openXLib(miscXObjectPath)
  14.   set miscXobj to Misc_X(mnew)
  15. end
  16.  
  17. on openDataFile
  18.   if objectp(myFileIO) then
  19.     myFileIO(mdispose)
  20.   end if
  21.   if objectp(myUtil) then
  22.     myUtil(mdispose)
  23.   end if
  24.   if the machineType = 256 then
  25.     set myUtil to movUtils(mnew)
  26.   else
  27.     set myUtil to movieUtilities(mnew)
  28.   end if
  29.   set myFileIO to fileio(mnew, "?read", saveDataType())
  30.   if objectp(myFileIO) then
  31.     set a to myFileIO(mReadWord)
  32.     set b to myFileIO(mReadWord)
  33.     put a
  34.     put b
  35.     if objectp(myFileIO) then
  36.       myFileIO(mdispose)
  37.     end if
  38.   else
  39.     if not voidp(myFileIO) and (myFileIO <> -43) then
  40.       set IOerrors to [33: "File directory full", 34: "Volume full", 35: "Volume not found", 36: "I/O Error", 37: "Bad file name", 38: "File not open", 42: "Too many files open", 43: "File not found", 49: "File open with write permission", 56: "No such drive", 65: "No disk in drive", 120: "Directory not found"]
  41.       set errMsg to getaProp(IOerrors, abs(myFileIO))
  42.       if voidp(errMsg) then
  43.         alert("Error occurred: Code" && string(myFileIO))
  44.       else
  45.         alert("Error occurred:" && errMsg)
  46.       end if
  47.     end if
  48.     if objectp(myFileIO) then
  49.       myFileIO(mdispose)
  50.     end if
  51.   end if
  52. end
  53.  
  54. on saveDataFile
  55.   global gMark
  56.   set volumeName to miscXobj(mBootName)
  57.   set diskSpace to miscXobj(mSpaceOnVol, volumeName)
  58.   if diskSpace < 50000 then
  59.     alert("Your disk is too full to save your work. There are only" && string(diskSpace) && "bytes remaining on drive" && volumeName & ".")
  60.     exit
  61.   end if
  62.   if objectp(myFileIO) then
  63.     myFileIO(mdispose)
  64.   end if
  65.   set saveFileName to miscXobj(mask, "Type a name for saving your work:", "Takeru", "OK", "Cancel")
  66.   if saveFileName = "Cancel" then
  67.     exit
  68.   end if
  69.   if length(saveFileName) = 0 then
  70.     exit
  71.   end if
  72.   if the machineType = 256 then
  73.     set DOSname to makeDOSfilename(saveFileName)
  74.     set theName to char 1 to 8 of DOSname & "." & saveDataType()
  75.     set myFileIO to fileio(mnew, "write", theName)
  76.     if objectp(myFileIO) then
  77.       myFileIO(mWriteString, "gmark:" && gMark)
  78.       myFileIO(mdispose)
  79.       if DOSname <> saveFileName then
  80.         alert("Your file has been saved using the filename:" && theName)
  81.       end if
  82.     else
  83.       tellUsError(myFileIO)
  84.     end if
  85.   else
  86.     set theName to char 1 to 30 of saveFileName
  87.     set myFileIO to fileio(mnew, "write", theName)
  88.     if objectp(myFileIO) then
  89.       myFileIO(mSetFinderInfo, saveDataType(), "ttxt")
  90.       myFileIO(mWriteString, "gmark:" && gMark)
  91.       myFileIO(mdispose)
  92.     else
  93.       tellUsError(myFileIO)
  94.     end if
  95.   end if
  96. end
  97.  
  98. on tellUsError myFileIO
  99.   if not voidp(myFileIO) and (myFileIO <> -43) then
  100.     set IOerrors to [33: "File directory full", 34: "Volume full", 35: "Volume not found", 36: "I/O Error", 37: "Bad file name", 38: "File not open", 42: "Too many files open", 43: "File not found", 49: "File open with write permission", 56: "No such drive", 65: "No disk in drive", 120: "Directory not found"]
  101.     set errMsg to getaProp(IOerrors, abs(myFileIO))
  102.     if voidp(errMsg) then
  103.       alert("Error occurred: Code" && string(myFileIO))
  104.     else
  105.       alert("Error occurred:" && errMsg)
  106.     end if
  107.   end if
  108.   if objectp(myFileIO) then
  109.     myFileIO(mdispose)
  110.   end if
  111. end
  112.  
  113. on makeDOSfilename str
  114.   set theCount to length(str)
  115.   set theResult to EMPTY
  116.   repeat with x = 1 to theCount
  117.     set theChar to char x of str
  118.     if "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_" contains theChar then
  119.       put theChar after theResult
  120.     end if
  121.   end repeat
  122.   return theResult
  123. end
  124.  
  125. on saveDataType
  126.   if the machineType = 256 then
  127.     set signature to "TXT"
  128.   else
  129.     set signature to "TEXT"
  130.   end if
  131.   return signature
  132. end
  133.  
  134. on myquit
  135.   set theanswer to miscXobj(mAnswer, "Are you sure you want to quit?", "OK", "Cancel", EMPTY)
  136.   if theanswer = "Cancel" then
  137.     exit
  138.   else
  139.     quit()
  140.   end if
  141. end
  142.