2001-05-22 06:00:38 +00:00
|
|
|
/*
|
2001-08-25 02:47:11 +00:00
|
|
|
sw_graph.c
|
2001-05-22 06:00:38 +00:00
|
|
|
|
|
|
|
(description)
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2001-05-31 03:41:35 +00:00
|
|
|
#include "QF/cvar.h"
|
2001-05-22 06:00:38 +00:00
|
|
|
#include "QF/draw.h"
|
|
|
|
#include "QF/render.h"
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "r_internal.h"
|
2022-03-24 03:22:27 +00:00
|
|
|
#include "vid_sw.h"
|
2001-05-22 06:00:38 +00:00
|
|
|
|
2022-03-09 11:19:14 +00:00
|
|
|
/*
|
|
|
|
R_LineGraph
|
|
|
|
|
|
|
|
Called by only R_DisplayTime
|
|
|
|
*/
|
2001-05-22 06:00:38 +00:00
|
|
|
void
|
2022-03-09 11:19:14 +00:00
|
|
|
R_LineGraph (int x, int y, int *h_vals, int count, int height)
|
2001-05-22 06:00:38 +00:00
|
|
|
{
|
2001-08-25 02:47:11 +00:00
|
|
|
int h, i, s, color;
|
2001-05-22 06:00:38 +00:00
|
|
|
byte *dest;
|
2022-03-24 03:22:27 +00:00
|
|
|
sw_framebuffer_t *fb = sw_ctx->framebuffer->buffer;
|
2001-05-22 06:00:38 +00:00
|
|
|
|
2001-08-28 22:46:02 +00:00
|
|
|
// FIXME: disable on no-buffer adapters, or put in the driver
|
2021-07-11 01:59:27 +00:00
|
|
|
s = height;
|
2001-05-22 06:00:38 +00:00
|
|
|
|
|
|
|
while (count--) {
|
2022-03-24 03:22:27 +00:00
|
|
|
dest = fb->color + fb->rowbytes * y + x++;
|
2001-05-22 06:00:38 +00:00
|
|
|
|
|
|
|
h = *h_vals++;
|
|
|
|
|
|
|
|
if (h == 10000)
|
|
|
|
color = 0x6f; // yellow
|
|
|
|
else if (h == 9999)
|
|
|
|
color = 0x4f; // red
|
|
|
|
else if (h == 9998)
|
|
|
|
color = 0xd0; // blue
|
|
|
|
else
|
|
|
|
color = 0xff; // pink
|
|
|
|
|
|
|
|
if (h > s)
|
|
|
|
h = s;
|
|
|
|
|
2022-03-24 03:22:27 +00:00
|
|
|
for (i = 0; i < h; i++, dest -= fb->rowbytes) {
|
2001-05-22 06:00:38 +00:00
|
|
|
dest[0] = color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|