mirror of
https://github.com/libretro/blueMSX-libretro.git
synced 2024-11-27 10:40:23 +00:00
217 lines
5.5 KiB
C
217 lines
5.5 KiB
C
/*****************************************************************************
|
|
** $Source: /cygdrive/d/Private/_SVNROOT/bluemsx/blueMSX/Src/VideoChips/VideoManager.c,v $
|
|
**
|
|
** $Revision: 1.14 $
|
|
**
|
|
** $Date: 2008-03-30 18:38:47 $
|
|
**
|
|
** More info: http://www.bluemsx.com
|
|
**
|
|
** Copyright (C) 2003-2006 Daniel Vik
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
**
|
|
******************************************************************************
|
|
*/
|
|
#include "VideoManager.h"
|
|
#include "ArchNotifications.h"
|
|
#include "SaveState.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#define MAX_DEVICES 64
|
|
|
|
typedef struct {
|
|
int handle;
|
|
VideoCallbacks callbacks;
|
|
FrameBufferData* frameBufer;
|
|
void* ref;
|
|
VideoMode videoMode;
|
|
VideoMode videoMask;
|
|
char name[32];
|
|
} VideoInfo;
|
|
|
|
typedef struct {
|
|
VideoInfo di[MAX_DEVICES];
|
|
int count;
|
|
int lastHandle;
|
|
} VideoManager;
|
|
|
|
static VideoManager videoManager;
|
|
|
|
void videoManagerReset()
|
|
{
|
|
videoManager.count = 0;
|
|
videoManager.lastHandle = 0;
|
|
}
|
|
|
|
int videoManagerGetCount()
|
|
{
|
|
return videoManager.count;
|
|
}
|
|
|
|
int videoManagerIsActive(int index)
|
|
{
|
|
if (index >= videoManager.count) {
|
|
return 0;
|
|
}
|
|
|
|
return videoManager.di[index].frameBufer == frameBufferGetActive();
|
|
}
|
|
|
|
int videoManagerGetActive()
|
|
{
|
|
int index;
|
|
for (index = 0; index < videoManager.count; index++) {
|
|
if (videoManagerIsActive(index)) {
|
|
return index;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
void videoManagerSetMode(int index, VideoMode videoMode, VideoMode modeMask)
|
|
{
|
|
videoManager.di[index].videoMode = videoMode;
|
|
videoManager.di[index].videoMask = modeMask;
|
|
if (videoManagerIsActive(index)) {
|
|
frameBufferSetMixMode(videoManager.di[index].videoMode, videoManager.di[index].videoMask);
|
|
}
|
|
}
|
|
|
|
void videoManagerSetActive(int index)
|
|
{
|
|
int activeIndex;
|
|
|
|
if (videoManager.count <= 0) {
|
|
frameBufferSetActive(NULL);
|
|
return;
|
|
}
|
|
|
|
if (index >= videoManager.count) {
|
|
return;
|
|
}
|
|
|
|
for (activeIndex = 0; activeIndex < videoManager.count; activeIndex++) {
|
|
if (videoManagerIsActive(activeIndex)) {
|
|
if (activeIndex != index && videoManager.di[activeIndex].callbacks.disable != NULL) {
|
|
videoManager.di[activeIndex].callbacks.disable(videoManager.di[activeIndex].ref);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (index < 0) {
|
|
frameBufferSetActive(NULL);
|
|
}
|
|
else {
|
|
frameBufferSetActive(videoManager.di[index].frameBufer);
|
|
frameBufferSetMixMode(videoManager.di[index].videoMode, videoManager.di[index].videoMask);
|
|
if (activeIndex != index && videoManager.di[index].callbacks.enable != NULL) {
|
|
videoManager.di[index].callbacks.enable(videoManager.di[index].ref);
|
|
}
|
|
}
|
|
}
|
|
|
|
char* videoManagerGetName(int index)
|
|
{
|
|
if (index >= videoManager.count) {
|
|
return index == 0 ? "Default" : NULL;
|
|
}
|
|
return videoManager.di[index].name;
|
|
}
|
|
|
|
int videoManagerRegister(const char* name, FrameBufferData* frameBuffer,
|
|
VideoCallbacks* callbacks, void* ref)
|
|
{
|
|
if (videoManager.count >= MAX_DEVICES) {
|
|
return 0;
|
|
}
|
|
|
|
videoManager.di[videoManager.count].handle = ++videoManager.lastHandle;
|
|
videoManager.di[videoManager.count].frameBufer = frameBuffer;
|
|
videoManager.di[videoManager.count].callbacks = *callbacks;
|
|
videoManager.di[videoManager.count].ref = ref;
|
|
videoManager.di[videoManager.count].videoMode = VIDEO_INTERNAL;
|
|
videoManager.di[videoManager.count].videoMask = VIDEO_INTERNAL;
|
|
|
|
strcpy(videoManager.di[videoManager.count].name, name);
|
|
|
|
videoManager.count++;
|
|
|
|
if (videoManager.count == 1) {
|
|
videoManagerSetActive(0);
|
|
}
|
|
|
|
archVideoOutputChange();
|
|
|
|
return videoManager.lastHandle - 1;
|
|
}
|
|
|
|
void videoManagerUnregister(int handle)
|
|
{
|
|
int isActive;
|
|
int i;
|
|
|
|
if (videoManager.count == 0) {
|
|
return;
|
|
}
|
|
|
|
for (i = 0; i < videoManager.count; i++) {
|
|
if (videoManager.di[i].handle == handle + 1) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (i == videoManager.count) {
|
|
return;
|
|
}
|
|
|
|
isActive = videoManagerIsActive(i);
|
|
|
|
videoManager.count--;
|
|
while (i < videoManager.count) {
|
|
videoManager.di[i] = videoManager.di[i + 1];
|
|
i++;
|
|
}
|
|
|
|
if (isActive || videoManager.count == 0) {
|
|
videoManagerSetActive(0);
|
|
}
|
|
|
|
if (videoManager.count == 0) {
|
|
frameBufferClearDeinterlace();
|
|
}
|
|
|
|
archVideoOutputChange();
|
|
}
|
|
|
|
|
|
void videoManagerLoadState()
|
|
{
|
|
SaveState* state = saveStateOpenForRead("VideoManager");
|
|
int index = saveStateGet(state, "ActiveFrameBuffer", 0);
|
|
saveStateClose(state);
|
|
videoManagerSetActive(index);
|
|
|
|
}
|
|
|
|
void videoManagerSaveState()
|
|
{
|
|
SaveState* state = saveStateOpenForWrite("VideoManager");
|
|
saveStateSet(state, "ActiveFrameBuffer", videoManagerGetActive());
|
|
saveStateClose(state);
|
|
}
|