- This wiki is out of date, use the continuation of this wiki instead
Xput
From FenixWiki
(Difference between revisions)
Revision as of 20:28, 30 November 2007 (edit) Sandman (Talk | contribs) (New page: Category:functions Category:maps ==Definition== '''INT''' xput ( <'''INT''' fileID> , <'''INT''' destinationGraphID> , <'''INT''' originGraphID> , <'''INT''' x> , <'''INT''' y> , ...) ← Previous diff |
Revision as of 00:55, 26 December 2007 (edit) (undo) Sandman (Talk | contribs) m (→Parameters) Next diff → |
||
Line 25: | Line 25: | ||
| '''INT''' blitflags || - What [[blit flags]] to draw the graphic with. | | '''INT''' blitflags || - What [[blit flags]] to draw the graphic with. | ||
|- | |- | ||
- | | '''INT''' | + | | '''INT''' regionID || - The [[regionID]] of the [[region]] in which the graphic is only allowed to be drawn. |
|} | |} | ||
Revision as of 00:55, 26 December 2007
Contents |
Definition
INT xput ( <INT fileID> , <INT destinationGraphID> , <INT originGraphID> , <INT x> , <INT y> , <INT angle> , <INT size> , <INT blitflags> , <INT region> )
Draws (blits) a graphic onto the background graphic.
If the advanced parameters aren't needed, put() can be used.
Parameters
INT fileID | - The fileID of the file that holds the graphics. |
INT graphID | - The graphID of the graphic to draw with. |
INT x | - Where on the background graphic's x-axis to put the graphic. |
INT y | - Where on the background graphic's y-axis to put the graphic. |
INT angle | - What angle to draw the graphic at. |
INT size | - What size to draw the graphic at. |
INT blitflags | - What blit flags to draw the graphic with. |
INT regionID | - The regionID of the region in which the graphic is only allowed to be drawn. |
Returns
INT : true
Notes
The x and y parameters denote where to draw the graphic, that is, where the center of the to be drawn graphic will be. Blit flags can be used to give the drawing (blitting) a special effect.
When angle is 0 and size is 100, the speed is greater, because the graph doesn't need rotating or scaling.
Errors
Unsupported color depth | - The graphic's color depth is greater than the background graphic's. |
Maps Functions | |
• Graphic_info() • Map_block_copy() • Map_clear() • Map_clone() • Map_put() • Map_put_pixel() • Map_xput() • Map_xputnp() • New_map() • Save_png() • Unload_map() • |