]> git.tdb.fi Git - libs/gl.git/blob - source/bufferable.h
Add getter for animation duration
[libs/gl.git] / source / bufferable.h
1 #ifndef MSP_GL_BUFFERABLE_H_
2 #define MSP_GL_BUFFERABLE_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class Buffer;
8
9 /**
10 Base class for things that can store data in buffers.  Supports buffer sharing.
11 A dirty flag is provided for derived classes.  It should be set when the data
12 in the buffer is considered out of date, and is cleared by Bufferable after
13 uploading fresh data to the buffer.
14 */
15 class Bufferable
16 {
17 public:
18         class AsyncUpdater
19         {
20         private:
21                 const Bufferable &bufferable;
22                 char *mapped_address;
23                 bool buffer_resized;
24
25         public:
26                 AsyncUpdater(const Bufferable &);
27                 ~AsyncUpdater();
28
29                 void upload_data();
30         };
31
32 private:
33         Buffer *buffer;
34         unsigned offset;
35         Bufferable *next_in_buffer;
36         Bufferable *prev_in_buffer;
37 protected:
38         mutable bool dirty;
39
40         Bufferable();
41 public:
42         virtual ~Bufferable();
43
44         /** Sets the buffer to use.  If prev is not null, it must use the same
45         buffer, and this object is inserted after it. */
46         void use_buffer(Buffer *buf, Bufferable *prev = 0);
47
48         /** Uploads new data into the buffer if necessary. */
49         void refresh() const { if(dirty) update_buffer(); }
50
51         AsyncUpdater *refresh_async() const;
52
53 private:
54         void unlink_from_buffer();
55
56 protected:
57         /** Returns the buffer in which the data is stored. */
58         Buffer *get_buffer() const { return buffer; }
59
60         /** Returns the amount of data to be stored in the buffer, in bytes. */
61         virtual unsigned get_data_size() const = 0;
62
63         /** Returns a pointer to the start of data in client memory. */
64         virtual const void *get_data_pointer() const = 0;
65
66         /** Returns the alignment required for the data, in bytes.  The offset is
67         guaranteed to be a multiple of this. */
68         virtual unsigned get_alignment() const { return 1; }
69
70         /** Updates the offsets for the chain so that data from different objects
71         does not overlap.  Should be called if either data size or alignment
72         changes. */
73         void update_offset();
74
75         /** Returns the offset where the data should be uploaded. */
76         unsigned get_offset() const { return offset; }
77
78         /** Called when the offset for the data has changed. */
79         virtual void offset_changed() { }
80
81 private:
82         bool resize_buffer() const;
83
84 protected:
85         /** Resizes the buffer if necessary and calls upload_data(). */
86         void update_buffer() const;
87
88         /** Uploads data to the buffer.  Receives pointer to mapped buffer memory as
89         parameter.  If null, buffer interface should be used instead. */
90         virtual void upload_data(char *) const;
91 };
92
93 } // namespace GL
94 } // namespace Msp
95
96 #endif