doompanning/linuxdoom-1.10/i_video.c
oxmox 5342530c20 Squashed 'src/dp_doom/' content from commit 1909924
git-subtree-dir: src/dp_doom
git-subtree-split: 190992421c7c643afc99d7f7c511c162f65bea85
2023-02-19 01:52:56 +01:00

251 lines
5 KiB
C

// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// 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.
//
// $Log:$
//
// DESCRIPTION:
// DOOM graphics stuff for X11, UNIX.
//
//-----------------------------------------------------------------------------
#include <stdlib.h>
#include <string.h>
#include "doomstat.h"
#include "i_system.h"
#include "ib_video.h"
#include "v_video.h"
#include "m_argv.h"
#include "d_main.h"
#include "doomdef.h"
#include "i_video.h"
int aspect_ratio_correction;
static unsigned char *colors;
static size_t bytes_per_pixel;
static unsigned char *colored_screen;
static unsigned char *upscale_x_deltas;
static unsigned char *upscale_y_deltas;
static size_t output_width;
static size_t output_height;
//
// I_StartFrame
//
void I_StartFrame (void)
{
// er?
}
//
// I_StartTic
//
void I_StartTic (void)
{
IB_StartTic();
}
//
// I_UpdateNoBlit
//
void I_UpdateNoBlit (void)
{
// what is this?
}
//
// I_FinishUpdate
//
void I_FinishUpdate (void)
{
static int lasttic;
int tics;
int i;
// draws little dots on the bottom of the screen
if (devparm)
{
i = I_GetTime();
tics = i - lasttic;
lasttic = i;
if (tics > 20) tics = 20;
for (i=0 ; i<tics*2 ; i+=2)
screens[0][ (SCREENHEIGHT-1)*SCREENWIDTH + i] = 0xff;
for ( ; i<20*2 ; i+=2)
screens[0][ (SCREENHEIGHT-1)*SCREENWIDTH + i] = 0x0;
}
// Step 1. Color the screen
unsigned char *indexed_pixels = screens[0];
unsigned char *colored_screen_pointer = colored_screen;
for (size_t i = 0; i < SCREENWIDTH * SCREENHEIGHT; ++i)
{
unsigned char *color = &colors[*indexed_pixels++ * bytes_per_pixel];
for (size_t j = 0; j < bytes_per_pixel; ++j)
*colored_screen_pointer++ = color[j];
}
// Step 2. Scale the screen
unsigned char *pixels;
size_t pitch;
IB_GetFramebuffer(&pixels, &pitch);
const unsigned char *src_pointer = colored_screen;
for (size_t y = 0; y < output_height; ++y)
{
if (upscale_y_deltas[y])
{
unsigned char *upscale_line_buffer_pointer = &pixels[y * pitch];
for (size_t x = 0; x < output_width; ++x)
{
for (size_t i = 0; i < bytes_per_pixel; ++i)
*upscale_line_buffer_pointer++ = src_pointer[i];
if (upscale_x_deltas[x])
src_pointer += bytes_per_pixel;
}
}
else
{
memcpy(&pixels[y * pitch], &pixels[(y-1) * pitch], output_width * bytes_per_pixel);
}
}
// Step 3. Display the screen
IB_FinishUpdate();
}
//
// I_ReadScreen
//
void I_ReadScreen (byte* scr)
{
memcpy(scr, screens[0], SCREENWIDTH*SCREENHEIGHT);
}
//
// I_SetPalette
//
void I_SetPalette (const byte* palette)
{
register int i;
const unsigned char* gamma = gammatable[usegamma];
for (i=0 ; i<256 ; i++)
{
IB_GetColor(&colors[i * bytes_per_pixel], gamma[palette[0]], gamma[palette[1]], gamma[palette[2]]);
palette += 3;
}
}
void I_InitGraphics(void)
{
// TODO - get rid of this junk
static int firsttime=1;
if (!firsttime)
return;
firsttime = 0;
int multiply = 1;
if (M_CheckParm("-2"))
multiply = 2;
if (M_CheckParm("-3"))
multiply = 3;
if (M_CheckParm("-4"))
multiply = 4;
output_width = SCREENWIDTH * multiply;
if (aspect_ratio_correction)
output_height = SCREENWIDTH * multiply * 3 / 4;
else
output_height = SCREENHEIGHT * multiply;
IB_InitGraphics("clowndoom", output_width, output_height, &bytes_per_pixel);
I_GrabMouse(true);
// TODO - handle failed allocations
colors = malloc(256 * bytes_per_pixel);
colored_screen = malloc(SCREENWIDTH * SCREENHEIGHT * bytes_per_pixel);
// Create LUTs for the upscaler
upscale_x_deltas = malloc(output_width);
upscale_y_deltas = malloc(output_height);
for (size_t last = 0, i = 0; i < output_height; ++i)
{
size_t current = i * SCREENHEIGHT / output_height;
upscale_y_deltas[i] = last != current;
last = current;
}
upscale_y_deltas[0] = 1; // Force a redraw on the first line
for (size_t last = 0, i = 0; i < output_width; ++i)
{
size_t current = (i + 1) * SCREENWIDTH / output_width; // The +1 here is deliberate, to avoid distortion at 320x240
upscale_x_deltas[i] = last != current;
last = current;
}
}
void I_ShutdownGraphics(void)
{
free(colors);
free(colored_screen);
free(upscale_x_deltas);
free(upscale_y_deltas);
IB_ShutdownGraphics();
}
void I_GrabMouse(boolean grab)
{
IB_GrabMouse(grab);
}