This wiki is out of date, use the continuation of this wiki instead

Put

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 02:12, 1 May 2007 (edit)
Sandman (Talk | contribs)

← Previous diff
Revision as of 20:30, 30 November 2007 (edit) (undo)
Sandman (Talk | contribs)
m
Next diff →
Line 61: Line 61:
This will result in something like:<br /> This will result in something like:<br />
http://wwwhome.cs.utwente.nl/~bergfi/fenix/wiki/new_map.PNG http://wwwhome.cs.utwente.nl/~bergfi/fenix/wiki/new_map.PNG
 +
 +{{Funcbox
 + | category = Maps
 +}}

Revision as of 20:30, 30 November 2007


Contents

Definition

INT put ( <INT fileID> , <INT graphID> , <INT x> , <INT y> )

Draws (blits) a graph onto the background.

For more advanced blitting, see:

Parameters

INT fileID - The file that holds the graph.
INT graphID - The graph to draw with.
INT x - Where on the background's x-axis to put the graph.
INT y - Where on the background's y-axis to put the graph.

Returns

INT : true

Notes

The x and y parameters denote where to draw the graph, that is, where the center of the to be drawn graph will be.

Errors

Unsupported color depth - The origin graph's color depth is greater than the destination graph's.

Example

Program a_map_is_born;
Private
    int map;
Begin

    // Create a new graph of size 100x100 and color depth of 8bit
    map = new_map(100,100,8);
    
    // Clear the map red
    map_clear(0,map,rgb(255,0,0));

    // Put it in the center of the screen
    put(0,map,160,100);

    Loop
        frame;
    End

End

Used in example: new_map(), map_clear()

This will result in something like:
new_map.PNG


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() •
Personal tools