home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 2: PC
/
frozenfish_august_1995.bin
/
bbs
/
d09xx
/
d0925.lha
/
DonsGenies
/
DonsGenies.lha
/
Don'sGenies
/
GridIsometric60.pprx
< prev
next >
Wrap
Text File
|
1993-05-25
|
924b
|
46 lines
/* This Genie sets up an isometric grid with snap enabled.
Written by Don Cox ⌐ Feb 93 Not public domain. All rights reserved. */
signal on error
signal on syntax
address command
call SafeEndEdit.rexx()
call ppm_AutoUpdate(0)
cr="0a"x
gsize = ppm_GetGridSize()
gwidth = word(gsize,1)
gheight = word(gsize,2)
call ppm_SaveText("ram:gridsize",gsize)
currentunits = ppm_GetUnits()
call ppm_SetGrid(1)
select
when currentunits = 1 then call ppm_SetGridSize(0.125,0.2165)
when currentunits = 2 then call ppm_SetGridSize(.25,.433)
otherwise call ppm_SetGridSize(1,1.9) /* not so accurate in picas */
end
call ppm_SetGridSnap(1)
call exit_msg()
end
error:
syntax:
do
exit_msg("Genie failed due to error: "errortext(rc))
end
exit_msg:
do
parse arg message
if message ~= "" then
call ppm_Inform(1,message)
call ppm_ClearStatus()
call ppm_AutoUpdate(1)
exit
end