1 | /** |
2 | * Copyright (c) 2006-2023 LOVE Development Team |
3 | * |
4 | * This software is provided 'as-is', without any express or implied |
5 | * warranty. In no event will the authors be held liable for any damages |
6 | * arising from the use of this software. |
7 | * |
8 | * Permission is granted to anyone to use this software for any purpose, |
9 | * including commercial applications, and to alter it and redistribute it |
10 | * freely, subject to the following restrictions: |
11 | * |
12 | * 1. The origin of this software must not be misrepresented; you must not |
13 | * claim that you wrote the original software. If you use this software |
14 | * in a product, an acknowledgment in the product documentation would be |
15 | * appreciated but is not required. |
16 | * 2. Altered source versions must be plainly marked as such, and must not be |
17 | * misrepresented as being the original software. |
18 | * 3. This notice may not be removed or altered from any source distribution. |
19 | **/ |
20 | |
21 | #pragma once |
22 | |
23 | // LOVE |
24 | #include "common/math.h" |
25 | #include "Drawable.h" |
26 | #include "Image.h" |
27 | #include "vertex.h" |
28 | #include "video/VideoStream.h" |
29 | #include "audio/Source.h" |
30 | |
31 | namespace love |
32 | { |
33 | namespace graphics |
34 | { |
35 | |
36 | class Graphics; |
37 | |
38 | class Video : public Drawable |
39 | { |
40 | public: |
41 | |
42 | static love::Type type; |
43 | |
44 | Video(Graphics *gfx, love::video::VideoStream *stream, float dpiscale = 1.0f); |
45 | virtual ~Video(); |
46 | |
47 | // Drawable |
48 | void draw(Graphics *gfx, const Matrix4 &m) override; |
49 | |
50 | love::video::VideoStream *getStream(); |
51 | |
52 | love::audio::Source *getSource(); |
53 | void setSource(love::audio::Source *source); |
54 | |
55 | int getWidth() const; |
56 | int getHeight() const; |
57 | |
58 | int getPixelWidth() const; |
59 | int getPixelHeight() const; |
60 | |
61 | void setFilter(const Texture::Filter &f); |
62 | const Texture::Filter &getFilter() const; |
63 | |
64 | private: |
65 | |
66 | void update(); |
67 | |
68 | StrongRef<love::video::VideoStream> stream; |
69 | |
70 | int width; |
71 | int height; |
72 | |
73 | Texture::Filter filter; |
74 | |
75 | Vertex vertices[4]; |
76 | |
77 | StrongRef<Image> images[3]; |
78 | StrongRef<love::audio::Source> source; |
79 | |
80 | }; // Video |
81 | |
82 | } // graphics |
83 | } // love |
84 | |