disable standalone pluign builds
[pcsx_rearmed.git] / plugins / gpulib / vout_pl.c
... / ...
CommitLineData
1/*
2 * video output handling using plugin_lib
3 * (C) GraÅžvydas "notaz" Ignotas, 2011
4 *
5 * This work is licensed under the terms of any of these licenses
6 * (at your option):
7 * - GNU GPL, version 2 or later.
8 * - GNU LGPL, version 2.1 or later.
9 * See the COPYING file in the top-level directory.
10 */
11
12#include <string.h>
13#include "gpu.h"
14#include "cspace.h"
15#include "../../frontend/plugin_lib.h"
16
17static const struct rearmed_cbs *cbs;
18
19int vout_init(void)
20{
21 return 0;
22}
23
24int vout_finish(void)
25{
26 return 0;
27}
28
29static void check_mode_change(int force)
30{
31 static uint32_t old_status;
32 static int old_h;
33 int w = gpu.screen.hres;
34 int h = gpu.screen.h;
35 int w_out = w;
36 int h_out = h;
37
38 gpu.state.enhancement_active =
39 gpu.get_enhancement_bufer != NULL && gpu.state.enhancement_enable
40 && w <= 512 && h <= 256 && !gpu.status.rgb24;
41
42 if (gpu.state.enhancement_active) {
43 w_out *= 2;
44 h_out *= 2;
45 }
46
47 // width|rgb24 change?
48 if (force || (gpu.status.reg ^ old_status) & ((7<<16)|(1<<21)) || h != old_h)
49 {
50 old_status = gpu.status.reg;
51 old_h = h;
52
53 cbs->pl_vout_set_mode(w_out, h_out, w, h, gpu.status.rgb24 ? 24 : 16);
54 }
55}
56
57void vout_update(void)
58{
59 int x = gpu.screen.x & ~1; // alignment needed by blitter
60 int y = gpu.screen.y;
61 int w = gpu.screen.w;
62 int h = gpu.screen.h;
63 uint16_t *vram = gpu.vram;
64 int vram_h = 512;
65
66 if (w == 0 || h == 0)
67 return;
68
69 check_mode_change(0);
70 if (gpu.state.enhancement_active)
71 vram = gpu.get_enhancement_bufer(&x, &y, &w, &h, &vram_h);
72
73 if (y + h > vram_h) {
74 if (y + h - vram_h > h / 2) {
75 // wrap
76 h -= vram_h - y;
77 y = 0;
78 }
79 else
80 // clip
81 h = vram_h - y;
82 }
83
84 vram += y * 1024 + x;
85
86 cbs->pl_vout_flip(vram, 1024, gpu.status.rgb24, w, h);
87}
88
89void vout_blank(void)
90{
91 int w = gpu.screen.hres;
92 int h = gpu.screen.h;
93 if (gpu.state.enhancement_active) {
94 w *= 2;
95 h *= 2;
96 }
97 check_mode_change(0);
98 cbs->pl_vout_flip(NULL, 1024, gpu.status.rgb24, w, h);
99}
100
101long GPUopen(void **unused)
102{
103 gpu.frameskip.active = 0;
104 gpu.frameskip.frame_ready = 1;
105
106 cbs->pl_vout_open();
107 check_mode_change(1);
108 vout_update();
109 return 0;
110}
111
112long GPUclose(void)
113{
114 cbs->pl_vout_close();
115 return 0;
116}
117
118void vout_set_config(const struct rearmed_cbs *cbs_)
119{
120 cbs = cbs_;
121}
122
123// vim:shiftwidth=2:expandtab