|
| TIL_TileMPlay (int middle, bool isflipbook) |
|
| ~TIL_TileMPlay () override |
|
void | noNewMPlay (bool enable) |
|
void | setSendPIDFlag (bool flag) |
|
const char * | className () const override |
|
void | getDescription (UT_WorkBuffer &wbuf) const override |
|
int | open (const IMG_TileOptions &finfo, int xres, int yres, int twidth, int theight, fpreal aspect) override |
| Open the device. More...
|
|
int | openMulti (IMG_TileOptionList &flist, int xres, int yres, int twidth, int theight, fpreal aspect) override |
|
void | setWhitePoint (fpreal w) override |
|
void | writeCustomTag (const char *tagname, int size, const char *const *values) override |
|
int | writeTile (const void *data, unsigned x0, unsigned x1, unsigned y0, unsigned y1) override |
|
bool | writeSamples (int nsamples, int floats_per_sample, const UT_Vector3T< int > *samples, const float *data) override |
|
void | flush () override |
|
int | close (bool keep_alive=false) override |
|
int | openDeep (const char *filename, const TIL_Sequence &info, int tilex, int tiley, bool startnew=false, const IMG_TileOptions *finfo=0) |
|
int | writeDeepTile (int plane_index, const void *data, int x0, int x1, int y0, int y1) |
|
void | setStatusMsg (const char *msg) |
|
bool | isOpen () const |
|
bool | checkInterrupt () |
|
bool | getMouseClickPosition (int &x, int &y) const override |
|
float | getMouseClickRadius () const override |
|
void | setMouseClickPosition (int x, int y) |
|
void | streakEdges (int x1, int y1, int x2, int y2, int plane=-1) |
|
bool | wasRemoteQuitRequested () |
|
void | terminateOnConnectionLost (bool) override |
|
bool | wantsHoudiniPort () const override |
|
bool | isInteractive () const override |
|
void | setStyleSheets (UT_StringArray &style_sheets) override |
|
| IMG_TileDevice () |
|
virtual | ~IMG_TileDevice () |
|
void | setVisibleRegion (int l, int r, int b, int t) |
|
void | setRenderSize (int rwidth, int rheight) |
|
void | setDeviceDataWindow (const UT_DimRect &w) |
| Set the data window. More...
|
|
void | setDeviceRenderWindow (const UT_DimRect &w) |
|
virtual void | checkpoint () |
|
void | setRenderSourceName (const char *name) |
|
const char * | getRenderSourceName () const |
|
int | getFileCount () const |
|
IMG_DataType | getDataType (int idx=0) const |
|
bool | isRandomAccess () const |
|
int | getTileWidth () const |
| Query tile width parameters. More...
|
|
int | getTileHeight () const |
|
int | getTileCountX () const |
|
int | getTileCountY () const |
|
IMG_ColorModel | getColorModel (int idx=0) const |
|
IMG_DataType * | getDataTypes () |
|
IMG_ColorModel * | getColorModels () |
|
void | writeKnownTag (IMG_TagType tag_id, int size, const char *const *values) |
|
virtual int | unsafeFlush () |
|
virtual bool | getNextTile (int &xl, int &xr, int &yb, int &yt, int &tx, int &ty) |
|
virtual bool | getClickedTile (int &tx, int &ty, float &radius) const |
|
virtual void | resetTileRequestor () |
|
virtual int | getTileMode () const |
|
int | xres () const |
|
int | yres () const |
|
|
enum | IMG_TILE_ORDER { IMG_TILE_BOTTOM_FIRST = 0,
IMG_TILE_RANDOM_ORDER = 1,
IMG_TILE_TOP_FIRST = 2,
IMG_TILE_HILBERT = 3
} |
|
typedef IMG_TileDevice *(* | IMG_TileDeviceCreator )(const char *filename, const UT_Options *options) |
|
void | setResolution (int xres, int yres, int tilewidth, int tileheight, int tile_order=IMG_TILE_BOTTOM_FIRST) |
|
void | setModel (const IMG_TileOptions &finfo) |
|
void | setModel (IMG_TileOptionList &flist) |
|
void | setModel (const IMG_DataType *dt, const IMG_ColorModel *cm) |
|
void | mapImageToTile (int ix, int iy, int &tx, int &ty) |
|
void | getTileBounds (int tx, int ty, int &xl, int &xr, int &yb, int &yt) |
|
bool | hasDataWindow (int full_xres, int full_yres) const |
|
int | getDataX () const |
|
int | getDataY () const |
|
int | getDataWidth () const |
|
int | getDataHeight () const |
|
void | setTileOrder (IMG_TILE_ORDER tile_order) |
| Specify the desired tile order. More...
|
|
void | setFileCount (int count) |
| In the open method, the sub-class should set the file count. More...
|
|
void | setTileSize (int width, int height) |
| Set the tile width. More...
|
|
UT_InclusiveRect | getDataWindow () const |
|
const UT_DimRect & | dataWindow () const |
|
const UT_DimRect & | displayWindow () const |
|
const UT_DimRect & | renderWindow () const |
|
- Examples:
- standalone/tiledevice.C.
Definition at line 35 of file TIL_TileMPlay.h.
int TIL_TileMPlay::writeTile |
( |
const void * |
data, |
|
|
unsigned |
x0, |
|
|
unsigned |
x1, |
|
|
unsigned |
y0, |
|
|
unsigned |
y1 |
|
) |
| |
|
overridevirtual |
The data written is in the format specified by the IMG_ColorModel and IMG_DataType parameters in the open. The size of the tile is smaller or equal to the sizes specified in the open. If the device was opened using openMulti(), the data is provided as a sequence of planes - first all pixels for plane 0, then all pixels for plane 1, etc.
The rectangle spectified by x0
, x1
, y0
and y1
is an inclusive rectangle. That is, the number of pixels in data
is:
(x1-x0+1)*(y1-y0+1).
The first pixel in the data buffer is the bottom left corner of the tile (i.e.
(x0,y0)).
The rectangle specified is also relative to the data window. So, to offset to get the absolute pixel location you need to take the data window (getDataWindow()) into account. You can also use the convenience methods getDataX()
and getDataY(). For example:
Implements IMG_TileDevice.