Sha256: 7371f48265d15659df748fa0c91e1138eaa8030288bc162351d6c679c491465b

Contents?: true

Size: 1.44 KB

Versions: 4

Compression:

Stored size: 1.44 KB

Contents

#ifndef GOSUIMPL_GRAPHICS_TEXCHUNK_HPP
#define GOSUIMPL_GRAPHICS_TEXCHUNK_HPP

#include <Gosu/Fwd.hpp>
#include <Gosu/ImageData.hpp>
#include <Gosu/TR1.hpp>
#include <GosuImpl/Graphics/Common.hpp>
#include <memory>
#include <vector>
#include <stdexcept>

class Gosu::TexChunk : public Gosu::ImageData
{
    Graphics* graphics;
    Transforms* transforms;
    DrawOpQueueStack* queues;
    std::tr1::shared_ptr<Texture> texture;
    int x, y, w, h, padding;
    
    // Cached for faster access.
    GLTexInfo info;

public:
    TexChunk(Graphics& graphics, Transforms& transforms, DrawOpQueueStack& queues,
             std::tr1::shared_ptr<Texture> texture, int x, int y, int w, int h, int padding);
    ~TexChunk();

    unsigned int width() const
    {
        return w;
    }
    
    unsigned int height() const
    {
        return h;
    }
    
    GLuint texName() const
    {
        return info.texName;
    }
    
    void getCoords(float& left, float& top, float& right, float& bottom) const
    {
        left = info.left;
        top = info.top;
        right = info.right;
        bottom = info.bottom;
    }

    void draw(double x1, double y1, Color c1,
        double x2, double y2, Color c2,
        double x3, double y3, Color c3,
        double x4, double y4, Color c4,
        ZPos z, AlphaMode mode) const;
        
    const GLTexInfo* glTexInfo() const;
    Gosu::Bitmap toBitmap() const;
    void insert(const Bitmap& bitmap, int x, int y);
};

#endif

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gosu-0.7.38 GosuImpl/Graphics/TexChunk.hpp
gosu-0.7.37 GosuImpl/Graphics/TexChunk.hpp
gosu-0.7.36.2 GosuImpl/Graphics/TexChunk.hpp
gosu-0.7.35 GosuImpl/Graphics/TexChunk.hpp