2019-07-06 05:42:53 +00:00
|
|
|
/*
|
|
|
|
vulkan_draw.c
|
|
|
|
|
|
|
|
2D drawing support for Vulkan
|
|
|
|
|
2021-01-10 06:52:27 +00:00
|
|
|
Copyright (C) 2021 Bill Currie <bill@taniwha.org>
|
2019-07-06 05:42:53 +00:00
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
2021-01-10 06:52:27 +00:00
|
|
|
Date: 2021/1/10
|
2019-07-06 05:42:53 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
2021-02-05 07:25:08 +00:00
|
|
|
#include "QF/cmem.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "QF/cvar.h"
|
|
|
|
#include "QF/draw.h"
|
|
|
|
#include "QF/dstring.h"
|
|
|
|
#include "QF/hash.h"
|
|
|
|
#include "QF/quakefs.h"
|
2021-01-13 01:43:23 +00:00
|
|
|
#include "QF/render.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "QF/sys.h"
|
2021-04-18 11:40:43 +00:00
|
|
|
#include "QF/va.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "QF/vid.h"
|
|
|
|
|
2021-01-10 06:52:27 +00:00
|
|
|
#include "compat.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "QF/Vulkan/qf_draw.h"
|
2021-12-08 06:28:21 +00:00
|
|
|
#include "QF/Vulkan/qf_matrices.h"
|
2022-05-30 03:10:00 +00:00
|
|
|
#include "QF/Vulkan/qf_renderpass.h"
|
2022-08-31 10:23:30 +00:00
|
|
|
#include "QF/Vulkan/qf_texture.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "QF/Vulkan/qf_vid.h"
|
2021-01-10 16:27:40 +00:00
|
|
|
#include "QF/Vulkan/barrier.h"
|
2021-01-12 02:27:41 +00:00
|
|
|
#include "QF/Vulkan/buffer.h"
|
|
|
|
#include "QF/Vulkan/command.h"
|
2021-04-18 11:40:43 +00:00
|
|
|
#include "QF/Vulkan/debug.h"
|
2021-01-10 06:52:27 +00:00
|
|
|
#include "QF/Vulkan/descriptor.h"
|
|
|
|
#include "QF/Vulkan/device.h"
|
|
|
|
#include "QF/Vulkan/image.h"
|
2021-12-02 13:48:50 +00:00
|
|
|
#include "QF/Vulkan/instance.h"
|
2022-10-03 01:29:49 +00:00
|
|
|
#include "QF/Vulkan/resource.h"
|
2021-01-21 07:39:11 +00:00
|
|
|
#include "QF/Vulkan/scrap.h"
|
2021-01-10 16:27:40 +00:00
|
|
|
#include "QF/Vulkan/staging.h"
|
2021-07-10 09:04:34 +00:00
|
|
|
#include "QF/ui/view.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
|
2022-08-31 10:23:30 +00:00
|
|
|
#include "r_font.h"
|
2022-09-04 11:56:38 +00:00
|
|
|
#include "r_text.h"
|
2019-07-06 05:42:53 +00:00
|
|
|
#include "r_internal.h"
|
2021-01-10 06:52:27 +00:00
|
|
|
#include "vid_vulkan.h"
|
|
|
|
|
2022-10-07 07:53:13 +00:00
|
|
|
typedef struct descbatch_s {
|
|
|
|
int32_t descid; // texture or font descriptor id
|
|
|
|
uint32_t count; // number of objects in batch
|
|
|
|
} descbatch_t;
|
|
|
|
|
|
|
|
typedef struct descbatchset_s
|
|
|
|
DARRAY_TYPE (descbatch_t) descbatchset_t;
|
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
typedef struct {
|
|
|
|
float xy[2];
|
2021-01-12 04:51:41 +00:00
|
|
|
float st[2];
|
2021-01-12 02:27:41 +00:00
|
|
|
float color[4];
|
|
|
|
} drawvert_t;
|
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t index;
|
|
|
|
byte color[4];
|
|
|
|
float position[2];
|
|
|
|
float offset[2];
|
|
|
|
} sliceinst_t;
|
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t index;
|
|
|
|
byte color[4];
|
|
|
|
float position[2];
|
|
|
|
} glyphinst_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
float offset[2];
|
|
|
|
float uv[2];
|
|
|
|
} glyphvert_t;
|
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
typedef struct cachepic_s {
|
|
|
|
char *name;
|
|
|
|
qpic_t *pic;
|
|
|
|
} cachepic_t;
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
typedef struct vertqueue_s {
|
|
|
|
drawvert_t *verts;
|
|
|
|
int count;
|
|
|
|
int size;
|
|
|
|
} vertqueue_t;
|
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
typedef struct slicequeue_s {
|
|
|
|
sliceinst_t *slices;
|
|
|
|
int count;
|
|
|
|
int size;
|
|
|
|
} slicequeue_t;
|
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
typedef struct glyphqueue_s {
|
|
|
|
glyphinst_t *glyphs;
|
|
|
|
int count;
|
|
|
|
int size;
|
|
|
|
} glyphqueue_t;
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
typedef struct drawframe_s {
|
2022-10-03 01:29:49 +00:00
|
|
|
size_t quad_offset;
|
2022-11-18 00:44:01 +00:00
|
|
|
size_t slice_offset;
|
2022-10-03 01:29:49 +00:00
|
|
|
size_t glyph_offset;
|
2022-05-28 09:14:26 +00:00
|
|
|
size_t line_offset;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkBuffer quad_buffer;
|
2022-10-07 07:53:13 +00:00
|
|
|
descbatchset_t quad_batch;
|
2022-11-18 00:44:01 +00:00
|
|
|
VkBuffer slice_buffer;
|
|
|
|
descbatchset_t slice_batch;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkBuffer glyph_buffer;
|
2022-10-07 07:53:13 +00:00
|
|
|
descbatchset_t glyph_batch;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkBuffer line_buffer;
|
2022-09-09 08:06:33 +00:00
|
|
|
vertqueue_t quad_verts;
|
2022-11-18 00:44:01 +00:00
|
|
|
slicequeue_t slice_insts;
|
2022-10-03 01:29:49 +00:00
|
|
|
glyphqueue_t glyph_insts;
|
2022-09-09 08:06:33 +00:00
|
|
|
vertqueue_t line_verts;
|
2021-01-16 05:42:25 +00:00
|
|
|
VkCommandBuffer cmd;
|
|
|
|
} drawframe_t;
|
|
|
|
|
|
|
|
typedef struct drawframeset_s
|
|
|
|
DARRAY_TYPE (drawframe_t) drawframeset_t;
|
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
typedef struct drawfontres_s {
|
|
|
|
qfv_resource_t resource;
|
|
|
|
qfv_resobj_t glyph_data;
|
|
|
|
qfv_resobj_t glyph_bview;
|
|
|
|
qfv_resobj_t glyph_image;
|
|
|
|
qfv_resobj_t glyph_iview;
|
|
|
|
} drawfontres_t;
|
|
|
|
|
|
|
|
typedef struct drawfont_s {
|
|
|
|
VkDescriptorSet set;
|
|
|
|
drawfontres_t *resource;
|
|
|
|
rfont_t *font;
|
|
|
|
} drawfont_t;
|
|
|
|
|
|
|
|
typedef struct drawfontset_s
|
|
|
|
DARRAY_TYPE (drawfont_t) drawfontset_t;
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
typedef struct drawctx_s {
|
|
|
|
VkSampler sampler;
|
|
|
|
scrap_t *scrap;
|
|
|
|
qfv_stagebuf_t *stage;
|
2021-12-18 04:07:56 +00:00
|
|
|
qpic_t *crosshair;
|
2021-01-16 05:42:25 +00:00
|
|
|
qpic_t *conchars;
|
|
|
|
qpic_t *conback;
|
|
|
|
qpic_t *white_pic;
|
2022-11-12 15:49:47 +00:00
|
|
|
qpic_t *backtile_pic;
|
2021-02-05 07:25:08 +00:00
|
|
|
// use two separate cmem blocks for pics and strings (cachepic names)
|
|
|
|
// to ensure the names are never in the same cacheline as a pic since the
|
|
|
|
// names are used only for lookup
|
|
|
|
memsuper_t *pic_memsuper;
|
|
|
|
memsuper_t *string_memsuper;
|
2021-01-16 05:42:25 +00:00
|
|
|
hashtab_t *pic_cache;
|
2022-10-03 01:29:49 +00:00
|
|
|
qfv_resource_t *draw_resource;
|
2022-11-18 00:44:01 +00:00
|
|
|
qfv_resobj_t *ind_objects;
|
2022-10-03 01:29:49 +00:00
|
|
|
qfv_resobj_t *quad_objects;
|
2022-11-18 00:44:01 +00:00
|
|
|
qfv_resobj_t *slice_objects;
|
2022-10-03 01:29:49 +00:00
|
|
|
qfv_resobj_t *glyph_objects;
|
|
|
|
qfv_resobj_t *line_objects;
|
2022-05-28 09:14:26 +00:00
|
|
|
VkPipeline quad_pipeline;
|
2022-11-18 00:44:01 +00:00
|
|
|
VkPipeline slice_pipeline;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkPipeline glyph_coverage_pipeline;
|
2022-05-28 09:14:26 +00:00
|
|
|
VkPipeline line_pipeline;
|
2021-01-16 05:42:25 +00:00
|
|
|
VkPipelineLayout layout;
|
2022-11-18 00:44:01 +00:00
|
|
|
VkPipelineLayout glyph_layout;//slice pipeline uses same layout
|
2022-10-03 01:29:49 +00:00
|
|
|
VkDescriptorSet quad_set;
|
2021-01-16 05:42:25 +00:00
|
|
|
drawframeset_t frames;
|
2022-10-03 01:29:49 +00:00
|
|
|
drawfontset_t fonts;
|
2021-01-16 05:42:25 +00:00
|
|
|
} drawctx_t;
|
|
|
|
|
|
|
|
// enough for a full screen of 8x8 chars at 1920x1080 plus some extras (368)
|
|
|
|
#define MAX_QUADS (32768)
|
2021-01-12 02:27:41 +00:00
|
|
|
#define VERTS_PER_QUAD (4)
|
|
|
|
#define INDS_PER_QUAD (5) // one per vert plus primitive reset
|
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
#define MAX_GLYPHS (32768)
|
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
#define MAX_LINES (32768)
|
|
|
|
#define VERTS_PER_LINE (2)
|
|
|
|
|
2022-09-02 05:23:19 +00:00
|
|
|
#define QUADS_OFFSET 0
|
|
|
|
#define IAQUADS_OFFSET (MAX_QUADS * VERTS_PER_QUAD)
|
|
|
|
#define LINES_OFFSET (IAQUADS_OFFSET + (MAX_QUADS * VERTS_PER_QUAD))
|
|
|
|
|
|
|
|
#define VERTS_PER_FRAME (LINES_OFFSET + MAX_LINES*VERTS_PER_LINE)
|
2022-05-28 09:14:26 +00:00
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
static void
|
|
|
|
generate_quad_indices (qfv_stagebuf_t *staging, qfv_resobj_t *ind_buffer)
|
|
|
|
{
|
|
|
|
qfv_packet_t *packet = QFV_PacketAcquire (staging);
|
|
|
|
uint32_t *ind = QFV_PacketExtend (packet, ind_buffer->buffer.size);
|
|
|
|
for (int i = 0; i < MAX_QUADS; i++) {
|
|
|
|
for (int j = 0; j < VERTS_PER_QUAD; j++) {
|
|
|
|
*ind++ = i * VERTS_PER_QUAD + j;
|
|
|
|
}
|
|
|
|
// mark end of primitive
|
|
|
|
*ind++ = -1;
|
|
|
|
}
|
|
|
|
QFV_PacketCopyBuffer (packet, ind_buffer->buffer.buffer,
|
|
|
|
&bufferBarriers[qfv_BB_TransferWrite_to_IndexRead]);
|
|
|
|
QFV_PacketSubmit (packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
generate_slice_indices (qfv_stagebuf_t *staging, qfv_resobj_t *ind_buffer)
|
|
|
|
{
|
|
|
|
qfv_packet_t *packet = QFV_PacketAcquire (staging);
|
|
|
|
uint32_t *ind = QFV_PacketExtend (packet, ind_buffer->buffer.size);
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
ind[i] = i;
|
|
|
|
ind[i + 9] = i + 1 + (i & 1) * 6;
|
|
|
|
ind[i + 18] = i + 8;
|
|
|
|
}
|
|
|
|
ind[8] = ind[17] = ~0;
|
|
|
|
QFV_PacketCopyBuffer (packet, ind_buffer->buffer.buffer,
|
|
|
|
&bufferBarriers[qfv_BB_TransferWrite_to_IndexRead]);
|
|
|
|
QFV_PacketSubmit (packet);
|
|
|
|
}
|
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
static void
|
|
|
|
create_quad_buffers (vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
qfv_device_t *device = ctx->device;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
2021-02-05 01:22:32 +00:00
|
|
|
size_t frames = ctx->frames.size;
|
2022-10-03 01:29:49 +00:00
|
|
|
|
|
|
|
dctx->draw_resource = malloc (2 * sizeof (qfv_resource_t)
|
2022-11-18 00:44:01 +00:00
|
|
|
// index buffers
|
|
|
|
+ 2 * sizeof (qfv_resobj_t)
|
|
|
|
// quads: frames vertex buffers
|
|
|
|
+ (frames) * sizeof (qfv_resobj_t)
|
|
|
|
// slicess: frames instance vertex buffers
|
|
|
|
+ (frames) * sizeof (qfv_resobj_t)
|
2022-10-03 01:29:49 +00:00
|
|
|
// glyphs: frames instance vertex buffers
|
|
|
|
+ (frames) * sizeof (qfv_resobj_t)
|
|
|
|
// lines: frames vertex buffers
|
|
|
|
+ (frames) * sizeof (qfv_resobj_t));
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->ind_objects = (qfv_resobj_t *) &dctx->draw_resource[2];
|
|
|
|
dctx->quad_objects = &dctx->ind_objects[2];
|
|
|
|
dctx->slice_objects = &dctx->quad_objects[frames];
|
|
|
|
dctx->glyph_objects = &dctx->slice_objects[frames];
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->line_objects = &dctx->glyph_objects[frames];
|
|
|
|
|
|
|
|
dctx->draw_resource[0] = (qfv_resource_t) {
|
|
|
|
.name = "draw",
|
|
|
|
.va_ctx = ctx->va_ctx,
|
|
|
|
.memory_properties = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT,
|
2022-11-18 00:44:01 +00:00
|
|
|
.num_objects = 2, // quad and 9-slice indices
|
|
|
|
.objects = dctx->ind_objects,
|
2022-10-03 01:29:49 +00:00
|
|
|
};
|
|
|
|
dctx->draw_resource[1] = (qfv_resource_t) {
|
|
|
|
.name = "draw",
|
|
|
|
.va_ctx = ctx->va_ctx,
|
|
|
|
.memory_properties = VK_MEMORY_PROPERTY_HOST_CACHED_BIT,
|
2022-11-18 00:44:01 +00:00
|
|
|
.num_objects = (frames) + (frames) + (frames) + (frames),
|
|
|
|
.objects = dctx->quad_objects,
|
2022-10-03 01:29:49 +00:00
|
|
|
};
|
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->ind_objects[0] = (qfv_resobj_t) {
|
2022-10-03 01:29:49 +00:00
|
|
|
.name = "quads.index",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = MAX_QUADS * INDS_PER_QUAD * sizeof (uint32_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_INDEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->ind_objects[1] = (qfv_resobj_t) {
|
|
|
|
.name = "9-slice.index",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = 26 * sizeof (uint32_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_INDEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
2022-10-03 01:29:49 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < frames; i++) {
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->quad_objects[i] = (qfv_resobj_t) {
|
2022-10-03 01:29:49 +00:00
|
|
|
.name = "quads.geom",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = MAX_QUADS * VERTS_PER_QUAD * sizeof (drawvert_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_VERTEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->slice_objects[i] = (qfv_resobj_t) {
|
|
|
|
.name = "slices.inst",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = MAX_GLYPHS * sizeof (sliceinst_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_VERTEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->glyph_objects[i] = (qfv_resobj_t) {
|
|
|
|
.name = "glyphs.inst",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = MAX_GLYPHS * sizeof (glyphinst_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_VERTEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
dctx->line_objects[i] = (qfv_resobj_t) {
|
|
|
|
.name = "lines.geom",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = MAX_LINES * VERTS_PER_LINE * sizeof (drawvert_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_VERTEX_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
QFV_CreateResource (device, &dctx->draw_resource[0]);
|
|
|
|
QFV_CreateResource (device, &dctx->draw_resource[1]);
|
2021-01-16 05:42:25 +00:00
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
void *data;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkDeviceMemory memory = dctx->draw_resource[1].memory;
|
|
|
|
dfunc->vkMapMemory (device->dev, memory, 0, VK_WHOLE_SIZE, 0, &data);
|
2021-01-16 05:42:25 +00:00
|
|
|
|
|
|
|
for (size_t f = 0; f < frames; f++) {
|
|
|
|
drawframe_t *frame = &dctx->frames.a[f];
|
2022-11-18 00:44:01 +00:00
|
|
|
frame->quad_buffer = dctx->quad_objects[f].buffer.buffer;
|
|
|
|
frame->quad_offset = dctx->quad_objects[f].buffer.offset;
|
|
|
|
frame->slice_buffer = dctx->slice_objects[f].buffer.buffer;
|
|
|
|
frame->slice_offset = dctx->slice_objects[f].buffer.offset;
|
2022-10-03 01:29:49 +00:00
|
|
|
frame->glyph_buffer = dctx->glyph_objects[f].buffer.buffer;
|
|
|
|
frame->glyph_offset = dctx->glyph_objects[f].buffer.offset;
|
|
|
|
frame->line_buffer = dctx->line_objects[f].buffer.buffer;
|
|
|
|
frame->line_offset = dctx->line_objects[f].buffer.offset;
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
frame->quad_verts = (vertqueue_t) {
|
2022-10-03 01:29:49 +00:00
|
|
|
.verts = (drawvert_t *) ((byte *)data + frame->quad_offset),
|
2022-09-09 08:06:33 +00:00
|
|
|
.size = MAX_QUADS,
|
|
|
|
};
|
2022-10-07 07:53:13 +00:00
|
|
|
DARRAY_INIT (&frame->quad_batch, 16);
|
2022-11-18 00:44:01 +00:00
|
|
|
frame->slice_insts = (slicequeue_t) {
|
|
|
|
.slices = (sliceinst_t *) ((byte *)data + frame->slice_offset),
|
|
|
|
.size = MAX_QUADS,
|
|
|
|
};
|
|
|
|
DARRAY_INIT (&frame->slice_batch, 16);
|
2022-10-03 01:29:49 +00:00
|
|
|
frame->glyph_insts = (glyphqueue_t) {
|
|
|
|
.glyphs = (glyphinst_t *) ((byte *)data + frame->glyph_offset),
|
2022-09-09 08:06:33 +00:00
|
|
|
.size = MAX_QUADS,
|
|
|
|
};
|
2022-10-07 07:53:13 +00:00
|
|
|
DARRAY_INIT (&frame->glyph_batch, 16);
|
2022-09-09 08:06:33 +00:00
|
|
|
frame->line_verts = (vertqueue_t) {
|
2022-10-03 01:29:49 +00:00
|
|
|
.verts = (drawvert_t *) ((byte *)data + frame->line_offset),
|
|
|
|
.size = MAX_QUADS,
|
2022-09-09 08:06:33 +00:00
|
|
|
};
|
2021-01-16 05:42:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The indices will never change so pre-generate and stash them
|
2022-11-18 00:44:01 +00:00
|
|
|
generate_quad_indices (ctx->staging, &dctx->ind_objects[0]);
|
|
|
|
generate_slice_indices (ctx->staging, &dctx->ind_objects[1]);
|
2021-01-12 02:27:41 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 06:28:56 +00:00
|
|
|
static void
|
|
|
|
flush_draw_scrap (vulkan_ctx_t *ctx)
|
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
QFV_ScrapFlush (ctx->draw_context->scrap);
|
2021-01-13 06:28:56 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
static void
|
2021-02-05 07:25:08 +00:00
|
|
|
pic_free (drawctx_t *dctx, qpic_t *pic)
|
2021-01-13 15:44:34 +00:00
|
|
|
{
|
2021-03-27 10:55:43 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) &pic->data[0];
|
2021-01-13 15:44:34 +00:00
|
|
|
QFV_SubpicDelete (subpic);
|
2021-02-05 07:25:08 +00:00
|
|
|
cmemfree (dctx->pic_memsuper, pic);
|
2021-01-13 15:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static cachepic_t *
|
2021-02-05 07:25:08 +00:00
|
|
|
new_cachepic (drawctx_t *dctx, const char *name, qpic_t *pic)
|
2021-01-13 15:44:34 +00:00
|
|
|
{
|
|
|
|
cachepic_t *cp;
|
2021-02-05 07:25:08 +00:00
|
|
|
size_t size = strlen (name) + 1;
|
2021-01-13 15:44:34 +00:00
|
|
|
|
2021-02-05 07:25:08 +00:00
|
|
|
cp = cmemalloc (dctx->pic_memsuper, sizeof (cachepic_t));
|
|
|
|
cp->name = cmemalloc (dctx->string_memsuper, size);
|
|
|
|
memcpy (cp->name, name, size);
|
2021-01-13 15:44:34 +00:00
|
|
|
cp->pic = pic;
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-02-05 07:25:08 +00:00
|
|
|
cachepic_free (void *_cp, void *_dctx)
|
2021-01-13 15:44:34 +00:00
|
|
|
{
|
2021-02-05 07:25:08 +00:00
|
|
|
drawctx_t *dctx = _dctx;
|
2021-01-13 15:44:34 +00:00
|
|
|
cachepic_t *cp = (cachepic_t *) _cp;
|
2021-02-05 07:25:08 +00:00
|
|
|
pic_free (dctx, cp->pic);
|
|
|
|
cmemfree (dctx->string_memsuper, cp->name);
|
|
|
|
cmemfree (dctx->pic_memsuper, cp);
|
2021-01-13 15:44:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
cachepic_getkey (const void *_cp, void *unused)
|
|
|
|
{
|
|
|
|
return ((cachepic_t *) _cp)->name;
|
|
|
|
}
|
|
|
|
|
2020-02-11 03:19:16 +00:00
|
|
|
static qpic_t *
|
2021-01-16 05:42:25 +00:00
|
|
|
pic_data (const char *name, int w, int h, const byte *data, drawctx_t *dctx)
|
2020-02-11 03:19:16 +00:00
|
|
|
{
|
|
|
|
qpic_t *pic;
|
2021-01-13 06:28:56 +00:00
|
|
|
subpic_t *subpic;
|
|
|
|
byte *picdata;
|
2020-02-11 03:19:16 +00:00
|
|
|
|
2021-02-05 07:25:08 +00:00
|
|
|
pic = cmemalloc (dctx->pic_memsuper,
|
|
|
|
field_offset (qpic_t, data[sizeof (subpic_t *)]));
|
2020-02-11 03:19:16 +00:00
|
|
|
pic->width = w;
|
|
|
|
pic->height = h;
|
2021-01-13 06:28:56 +00:00
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
subpic = QFV_ScrapSubpic (dctx->scrap, w, h);
|
2021-01-13 06:28:56 +00:00
|
|
|
*(subpic_t **) pic->data = subpic;
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
picdata = QFV_SubpicBatch (subpic, dctx->stage);
|
2021-01-13 06:28:56 +00:00
|
|
|
size_t size = w * h;
|
|
|
|
for (size_t i = 0; i < size; i++) {
|
|
|
|
byte pix = *data++;
|
|
|
|
byte *col = vid.palette + pix * 3;
|
2022-08-30 05:29:22 +00:00
|
|
|
byte alpha = (pix == 255) - 1;
|
|
|
|
// pre-multiply alpha.
|
|
|
|
*picdata++ = *col++ & alpha;
|
|
|
|
*picdata++ = *col++ & alpha;
|
|
|
|
*picdata++ = *col++ & alpha;
|
|
|
|
*picdata++ = alpha;
|
2021-01-13 06:28:56 +00:00
|
|
|
}
|
2022-04-23 01:46:55 +00:00
|
|
|
//FIXME live updates of the scrap aren't
|
|
|
|
//syncronized properly for some reason and result in stale texels being
|
|
|
|
//rendered (flashing pink around the Q menu cursor the first time it's
|
|
|
|
//displayed). I suspect simple barriers aren't enough and more
|
|
|
|
//sophisticated syncronization (events? semaphores?) is needed.
|
2020-02-11 03:19:16 +00:00
|
|
|
return pic;
|
|
|
|
}
|
|
|
|
|
2019-07-06 05:42:53 +00:00
|
|
|
qpic_t *
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_MakePic (int width, int height, const byte *data,
|
|
|
|
vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
return pic_data (0, width, height, data, ctx->draw_context);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_DestroyPic (qpic_t *pic, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
qpic_t *
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_PicFromWad (const char *name, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-13 06:28:56 +00:00
|
|
|
qpic_t *wadpic = W_GetLumpName (name);
|
|
|
|
|
|
|
|
if (!wadpic) {
|
|
|
|
return 0;
|
|
|
|
}
|
2021-02-05 07:25:08 +00:00
|
|
|
return pic_data (name, wadpic->width, wadpic->height, wadpic->data,
|
|
|
|
ctx->draw_context);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
qpic_t *
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_CachePic (const char *path, qboolean alpha, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-13 15:44:34 +00:00
|
|
|
qpic_t *p;
|
|
|
|
qpic_t *pic;
|
|
|
|
cachepic_t *cpic;
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
2021-01-13 15:44:34 +00:00
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
if ((cpic = Hash_Find (dctx->pic_cache, path))) {
|
2021-01-13 15:44:34 +00:00
|
|
|
return cpic->pic;
|
|
|
|
}
|
|
|
|
if (strlen (path) < 4 || strcmp (path + strlen (path) - 4, ".lmp")
|
|
|
|
|| !(p = (qpic_t *) QFS_LoadFile (QFS_FOpenFile (path), 0))) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
pic = pic_data (path, p->width, p->height, p->data, dctx);
|
2021-01-13 15:44:34 +00:00
|
|
|
free (p);
|
2021-02-05 07:25:08 +00:00
|
|
|
cpic = new_cachepic (dctx, path, pic);
|
2021-01-16 05:42:25 +00:00
|
|
|
Hash_Add (dctx->pic_cache, cpic);
|
2021-01-13 15:44:34 +00:00
|
|
|
return pic;
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_UncachePic (const char *path, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
Hash_Free (dctx->pic_cache, Hash_Del (dctx->pic_cache, path));
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
void
|
|
|
|
Vulkan_Draw_Shutdown (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-10 06:52:27 +00:00
|
|
|
qfv_device_t *device = ctx->device;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
2021-01-10 06:52:27 +00:00
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
QFV_DestroyResource (device, &dctx->draw_resource[0]);
|
|
|
|
QFV_DestroyResource (device, &dctx->draw_resource[1]);
|
|
|
|
for (size_t i = 0; i < dctx->fonts.size; i++) {
|
|
|
|
QFV_DestroyResource (device, &dctx->fonts.a[i].resource->resource);
|
|
|
|
free (dctx->fonts.a[i].resource);
|
|
|
|
}
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
dfunc->vkDestroyPipeline (device->dev, dctx->quad_pipeline, 0);
|
2022-11-18 00:44:01 +00:00
|
|
|
dfunc->vkDestroyPipeline (device->dev, dctx->slice_pipeline, 0);
|
2022-10-03 01:29:49 +00:00
|
|
|
dfunc->vkDestroyPipeline (device->dev, dctx->glyph_coverage_pipeline, 0);
|
2022-05-28 09:14:26 +00:00
|
|
|
dfunc->vkDestroyPipeline (device->dev, dctx->line_pipeline, 0);
|
2021-02-05 07:25:08 +00:00
|
|
|
Hash_DelTable (dctx->pic_cache);
|
|
|
|
delete_memsuper (dctx->pic_memsuper);
|
|
|
|
delete_memsuper (dctx->string_memsuper);
|
2021-01-16 05:42:25 +00:00
|
|
|
QFV_DestroyScrap (dctx->scrap);
|
|
|
|
QFV_DestroyStagingBuffer (dctx->stage);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Init (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-10 06:52:27 +00:00
|
|
|
qfv_device_t *device = ctx->device;
|
2021-01-10 16:27:40 +00:00
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
|
|
|
|
2021-12-02 13:48:50 +00:00
|
|
|
qfvPushDebug (ctx, "draw init");
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = calloc (1, sizeof (drawctx_t));
|
|
|
|
ctx->draw_context = dctx;
|
|
|
|
|
2021-02-05 01:22:32 +00:00
|
|
|
size_t frames = ctx->frames.size;
|
2021-01-16 05:42:25 +00:00
|
|
|
DARRAY_INIT (&dctx->frames, frames);
|
|
|
|
DARRAY_RESIZE (&dctx->frames, frames);
|
|
|
|
dctx->frames.grow = 0;
|
2022-10-03 01:29:49 +00:00
|
|
|
DARRAY_INIT (&dctx->fonts, 16);
|
|
|
|
DARRAY_RESIZE (&dctx->fonts, 16);
|
|
|
|
dctx->fonts.grow = 0;
|
|
|
|
dctx->fonts.size = 0;
|
2021-01-16 05:42:25 +00:00
|
|
|
|
2021-02-05 07:25:08 +00:00
|
|
|
dctx->pic_memsuper = new_memsuper ();
|
|
|
|
dctx->string_memsuper = new_memsuper ();
|
2021-01-16 05:42:25 +00:00
|
|
|
dctx->pic_cache = Hash_NewTable (127, cachepic_getkey, cachepic_free,
|
2021-02-05 07:25:08 +00:00
|
|
|
dctx, 0);
|
2021-01-13 15:44:34 +00:00
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
create_quad_buffers (ctx);
|
2021-01-31 10:58:55 +00:00
|
|
|
dctx->stage = QFV_CreateStagingBuffer (device, "draw", 4 * 1024 * 1024,
|
2021-01-19 16:23:24 +00:00
|
|
|
ctx->cmdpool);
|
2021-01-31 10:58:55 +00:00
|
|
|
dctx->scrap = QFV_CreateScrap (device, "draw_atlas", 2048, tex_rgba,
|
|
|
|
dctx->stage);
|
2021-02-04 08:03:49 +00:00
|
|
|
dctx->sampler = Vulkan_CreateSampler (ctx, "quakepic");
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2021-03-21 02:37:36 +00:00
|
|
|
draw_chars = W_GetLumpName ("conchars");
|
|
|
|
if (draw_chars) {
|
|
|
|
for (int i = 0; i < 256 * 64; i++) {
|
|
|
|
if (draw_chars[i] == 0) {
|
|
|
|
draw_chars[i] = 255; // proper transparent color
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dctx->conchars = pic_data ("conchars", 128, 128, draw_chars, dctx);
|
|
|
|
} else {
|
|
|
|
qpic_t *charspic = Draw_Font8x8Pic ();
|
|
|
|
dctx->conchars = pic_data ("conchars", charspic->width,
|
|
|
|
charspic->height, charspic->data, dctx);
|
2021-12-18 04:07:56 +00:00
|
|
|
free (charspic);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
qpic_t *hairpic = Draw_CrosshairPic ();
|
|
|
|
dctx->crosshair = pic_data ("crosshair", hairpic->width,
|
|
|
|
hairpic->height, hairpic->data, dctx);
|
|
|
|
free (hairpic);
|
2021-03-21 02:37:36 +00:00
|
|
|
}
|
2021-01-10 06:52:27 +00:00
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
byte white_block = 0xfe;
|
2021-01-16 05:42:25 +00:00
|
|
|
dctx->white_pic = pic_data ("white", 1, 1, &white_block, dctx);
|
2021-01-10 16:27:40 +00:00
|
|
|
|
2022-11-12 15:49:47 +00:00
|
|
|
dctx->backtile_pic = Vulkan_Draw_PicFromWad ("backtile", ctx);
|
|
|
|
if (!dctx->backtile_pic) {
|
|
|
|
dctx->backtile_pic = dctx->white_pic;
|
|
|
|
}
|
|
|
|
|
2021-01-13 06:28:56 +00:00
|
|
|
flush_draw_scrap (ctx);
|
2021-01-10 16:27:40 +00:00
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
dctx->quad_pipeline = Vulkan_CreateGraphicsPipeline (ctx, "twod");
|
2022-11-18 00:44:01 +00:00
|
|
|
dctx->slice_pipeline = Vulkan_CreateGraphicsPipeline (ctx, "slice");
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->glyph_coverage_pipeline
|
|
|
|
= Vulkan_CreateGraphicsPipeline (ctx, "glyph_coverage");
|
2022-05-28 09:14:26 +00:00
|
|
|
dctx->line_pipeline = Vulkan_CreateGraphicsPipeline (ctx, "lines");
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2021-02-04 08:03:49 +00:00
|
|
|
dctx->layout = Vulkan_CreatePipelineLayout (ctx, "twod_layout");
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->glyph_layout = Vulkan_CreatePipelineLayout (ctx, "glyph_layout");
|
2021-01-10 06:52:27 +00:00
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
__auto_type layouts = QFV_AllocDescriptorSetLayoutSet (1, alloca);
|
|
|
|
layouts->a[0] = Vulkan_CreateDescriptorSetLayout (ctx, "twod_set");
|
2021-02-04 08:03:49 +00:00
|
|
|
__auto_type pool = Vulkan_CreateDescriptorPool (ctx, "twod_pool");
|
2021-01-12 02:27:41 +00:00
|
|
|
|
|
|
|
VkDescriptorImageInfo imageInfo = {
|
2021-01-16 05:42:25 +00:00
|
|
|
dctx->sampler,
|
|
|
|
QFV_ScrapImageView (dctx->scrap),
|
2021-01-12 02:27:41 +00:00
|
|
|
VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL,
|
|
|
|
};
|
2021-01-15 13:45:49 +00:00
|
|
|
__auto_type cmdBuffers = QFV_AllocCommandBufferSet (frames, alloca);
|
|
|
|
QFV_AllocateCommandBuffers (device, ctx->cmdpool, 1, cmdBuffers);
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2021-01-10 06:52:27 +00:00
|
|
|
__auto_type sets = QFV_AllocateDescriptorSet (device, pool, layouts);
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->quad_set = sets->a[0];
|
|
|
|
VkWriteDescriptorSet write[] = {
|
|
|
|
{ VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, 0,
|
|
|
|
dctx->quad_set, 0, 0, 1,
|
|
|
|
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
|
|
|
&imageInfo, 0, 0 },
|
|
|
|
};
|
|
|
|
free (sets);
|
|
|
|
|
|
|
|
dfunc->vkUpdateDescriptorSets (device->dev, 1, write, 0, 0);
|
2021-01-15 13:45:49 +00:00
|
|
|
for (size_t i = 0; i < frames; i++) {
|
2021-01-16 05:42:25 +00:00
|
|
|
__auto_type dframe = &dctx->frames.a[i];
|
|
|
|
dframe->cmd = cmdBuffers->a[i];
|
2021-04-18 11:40:43 +00:00
|
|
|
QFV_duSetObjectName (device, VK_OBJECT_TYPE_COMMAND_BUFFER,
|
|
|
|
dframe->cmd,
|
|
|
|
va (ctx->va_ctx, "cmd:draw:%zd", i));
|
2021-01-12 02:27:41 +00:00
|
|
|
}
|
2021-12-02 13:48:50 +00:00
|
|
|
qfvPopDebug (ctx);
|
2021-01-12 02:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2022-09-09 11:05:31 +00:00
|
|
|
draw_pic (float x, float y, int w, int h, subpic_t *subpic,
|
2021-01-12 02:27:41 +00:00
|
|
|
int srcx, int srcy, int srcw, int srch,
|
2022-09-09 08:06:33 +00:00
|
|
|
float *color, vertqueue_t *queue)
|
2021-01-12 02:27:41 +00:00
|
|
|
{
|
2022-09-09 08:06:33 +00:00
|
|
|
if (queue->count >= queue->size) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
2021-01-10 06:52:27 +00:00
|
|
|
}
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
drawvert_t *verts = queue->verts + queue->count * VERTS_PER_QUAD;
|
|
|
|
queue->count++;
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2021-01-13 06:28:56 +00:00
|
|
|
srcx += subpic->rect->x;
|
|
|
|
srcy += subpic->rect->y;
|
|
|
|
|
|
|
|
float size = subpic->size;
|
2021-01-13 01:43:23 +00:00
|
|
|
float sl = (srcx + 0.03125) * size;
|
|
|
|
float sr = (srcx + srcw - 0.03125) * size;
|
|
|
|
float st = (srcy + 0.03125) * size;
|
|
|
|
float sb = (srcy + srch - 0.03125) * size;
|
2021-01-12 02:27:41 +00:00
|
|
|
|
|
|
|
verts[0].xy[0] = x;
|
|
|
|
verts[0].xy[1] = y;
|
|
|
|
verts[0].st[0] = sl;
|
|
|
|
verts[0].st[1] = st;
|
|
|
|
QuatCopy (color, verts[0].color);
|
|
|
|
|
|
|
|
verts[1].xy[0] = x;
|
|
|
|
verts[1].xy[1] = y + h;
|
|
|
|
verts[1].st[0] = sl;
|
|
|
|
verts[1].st[1] = sb;
|
|
|
|
QuatCopy (color, verts[1].color);
|
|
|
|
|
|
|
|
verts[2].xy[0] = x + w;
|
|
|
|
verts[2].xy[1] = y;
|
|
|
|
verts[2].st[0] = sr;
|
|
|
|
verts[2].st[1] = st;
|
|
|
|
QuatCopy (color, verts[2].color);
|
|
|
|
|
|
|
|
verts[3].xy[0] = x + w;
|
|
|
|
verts[3].xy[1] = y + h;
|
|
|
|
verts[3].st[0] = sr;
|
|
|
|
verts[3].st[1] = sb;
|
|
|
|
QuatCopy (color, verts[3].color);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
queue_character (int x, int y, byte chr, vulkan_ctx_t *ctx)
|
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
quat_t color = {1, 1, 1, 1};
|
|
|
|
int cx, cy;
|
|
|
|
cx = chr % 16;
|
|
|
|
cy = chr / 16;
|
|
|
|
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) dctx->conchars->data;
|
|
|
|
draw_pic (x, y, 8, 8, subpic, cx * 8, cy * 8, 8, 8, color,
|
2022-09-09 08:06:33 +00:00
|
|
|
&frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 05:24:33 +00:00
|
|
|
void
|
|
|
|
Vulkan_Draw_CharBuffer (int x, int y, draw_charbuffer_t *buffer,
|
|
|
|
vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
const byte *line = (byte *) buffer->chars;
|
|
|
|
int width = buffer->width;
|
|
|
|
int height = buffer->height;
|
|
|
|
while (height-- > 0) {
|
|
|
|
for (int i = 0; i < width; i++) {
|
|
|
|
Vulkan_Draw_Character (x + i * 8, y, line[i], ctx);
|
|
|
|
}
|
|
|
|
line += width;
|
|
|
|
y += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-06 05:42:53 +00:00
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Character (int x, int y, unsigned int chr, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-12 02:27:41 +00:00
|
|
|
if (chr == ' ') {
|
|
|
|
return;
|
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (y <= -8 || y >= (int) vid.height) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (x <= -8 || x >= (int) vid.width) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
queue_character (x, y, chr, ctx);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_String (int x, int y, const char *str, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-12 02:27:41 +00:00
|
|
|
byte chr;
|
|
|
|
|
|
|
|
if (!str || !str[0]) {
|
|
|
|
return;
|
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (y <= -8 || y >= (int) vid.height) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (*str) {
|
2022-09-21 08:31:18 +00:00
|
|
|
if ((chr = *str++) != ' ' && x >= -8 && x < (int) vid.width) {
|
2021-01-12 02:27:41 +00:00
|
|
|
queue_character (x, y, chr, ctx);
|
|
|
|
}
|
|
|
|
x += 8;
|
|
|
|
}
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_nString (int x, int y, const char *str, int count,
|
|
|
|
vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-12 02:27:41 +00:00
|
|
|
byte chr;
|
|
|
|
|
|
|
|
if (!str || !str[0]) {
|
|
|
|
return;
|
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (y <= -8 || y >= (int) vid.height) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (count-- > 0 && *str) {
|
2022-09-21 08:31:18 +00:00
|
|
|
if ((chr = *str++) != ' ' && x >= -8 && x < (int) vid.width) {
|
2021-01-12 02:27:41 +00:00
|
|
|
queue_character (x, y, chr, ctx);
|
|
|
|
}
|
|
|
|
x += 8;
|
|
|
|
}
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_AltString (int x, int y, const char *str, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-12 02:27:41 +00:00
|
|
|
byte chr;
|
|
|
|
|
|
|
|
if (!str || !str[0]) {
|
|
|
|
return;
|
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (y <= -8 || y >= (int) vid.height) {
|
2021-01-12 02:27:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (*str) {
|
|
|
|
if ((chr = *str++ | 0x80) != (' ' | 0x80)
|
2022-09-21 08:31:18 +00:00
|
|
|
&& x >= -8 && x < (int) vid.width) {
|
2021-01-12 02:27:41 +00:00
|
|
|
queue_character (x, y, chr, ctx);
|
|
|
|
}
|
|
|
|
x += 8;
|
|
|
|
}
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
2021-12-18 04:07:56 +00:00
|
|
|
static void
|
|
|
|
draw_crosshair_plus (int ch, int x, int y, vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
Vulkan_Draw_Character (x - 4, y - 4, '+', ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
draw_crosshair_pic (int ch, int x, int y, vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
|
|
|
static const int pos[CROSSHAIR_COUNT][4] = {
|
|
|
|
{0, 0, CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT},
|
|
|
|
{CROSSHAIR_WIDTH, 0, CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT},
|
|
|
|
{0, CROSSHAIR_HEIGHT, CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT},
|
|
|
|
{CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT, CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT},
|
|
|
|
};
|
|
|
|
const int *p = pos[ch - 1];
|
|
|
|
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) dctx->crosshair->data;
|
2022-11-19 15:50:59 +00:00
|
|
|
draw_pic (x - CROSSHAIR_WIDTH / 2 + 1, y - CROSSHAIR_HEIGHT / 2 + 1,
|
|
|
|
CROSSHAIR_WIDTH, CROSSHAIR_HEIGHT, subpic,
|
2022-09-09 08:06:33 +00:00
|
|
|
p[0], p[1], p[2], p[3], crosshair_color, &frame->quad_verts);
|
2021-12-18 04:07:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void (*crosshair_func[]) (int ch, int x, int y, vulkan_ctx_t *ctx) = {
|
|
|
|
draw_crosshair_plus,
|
|
|
|
draw_crosshair_pic,
|
|
|
|
draw_crosshair_pic,
|
|
|
|
draw_crosshair_pic,
|
|
|
|
draw_crosshair_pic,
|
|
|
|
};
|
|
|
|
|
2019-07-06 05:42:53 +00:00
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_CrosshairAt (int ch, int x, int y, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-12-18 04:07:56 +00:00
|
|
|
unsigned c = ch - 1;
|
|
|
|
|
|
|
|
if (c >= sizeof (crosshair_func) / sizeof (crosshair_func[0]))
|
|
|
|
return;
|
|
|
|
|
|
|
|
crosshair_func[c] (c, x, y, ctx);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Crosshair (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-12-18 04:07:56 +00:00
|
|
|
int x, y;
|
2022-11-18 02:23:32 +00:00
|
|
|
int s = 2 * ctx->twod_scale;
|
2021-12-18 04:07:56 +00:00
|
|
|
|
2022-11-18 02:23:32 +00:00
|
|
|
x = vid.width / s + cl_crossx;
|
|
|
|
y = vid.height / s + cl_crossy;
|
2021-12-18 04:07:56 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Vulkan_Draw_CrosshairAt (crosshair, x, y, ctx);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
2021-07-11 01:59:27 +00:00
|
|
|
void
|
|
|
|
Vulkan_Draw_TextBox (int x, int y, int width, int lines, byte alpha,
|
|
|
|
vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
|
|
|
quat_t color = {1, 1, 1, 1};
|
|
|
|
qpic_t *p;
|
|
|
|
int cx, cy, n;
|
2022-09-09 11:05:31 +00:00
|
|
|
#define draw(px, py, pp) \
|
|
|
|
do { \
|
|
|
|
subpic_t *subpic = *(subpic_t **) (pp)->data; \
|
|
|
|
draw_pic (px, py, pp->width, pp->height, subpic, \
|
|
|
|
0, 0, pp->width, pp->height, color, &frame->quad_verts); \
|
|
|
|
} while (0)
|
2021-07-11 01:59:27 +00:00
|
|
|
|
|
|
|
color[3] = alpha;
|
|
|
|
// draw left side
|
|
|
|
cx = x;
|
|
|
|
cy = y;
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_tl.lmp", true, ctx);
|
|
|
|
draw (cx, cy, p);
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_ml.lmp", true, ctx);
|
|
|
|
for (n = 0; n < lines; n++) {
|
|
|
|
cy += 8;
|
|
|
|
draw (cx, cy, p);
|
|
|
|
}
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_bl.lmp", true, ctx);
|
|
|
|
draw (cx, cy + 8, p);
|
|
|
|
|
|
|
|
// draw middle
|
|
|
|
cx += 8;
|
|
|
|
while (width > 0) {
|
|
|
|
cy = y;
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_tm.lmp", true, ctx);
|
|
|
|
draw (cx, cy, p);
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_mm.lmp", true, ctx);
|
|
|
|
for (n = 0; n < lines; n++) {
|
|
|
|
cy += 8;
|
|
|
|
if (n == 1)
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_mm2.lmp", true, ctx);
|
|
|
|
draw (cx, cy, p);
|
|
|
|
}
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_bm.lmp", true, ctx);
|
|
|
|
draw (cx, cy + 8, p);
|
|
|
|
width -= 2;
|
|
|
|
cx += 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
// draw right side
|
|
|
|
cy = y;
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_tr.lmp", true, ctx);
|
|
|
|
draw (cx, cy, p);
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_mr.lmp", true, ctx);
|
|
|
|
for (n = 0; n < lines; n++) {
|
|
|
|
cy += 8;
|
|
|
|
draw (cx, cy, p);
|
|
|
|
}
|
|
|
|
p = Vulkan_Draw_CachePic ("gfx/box_br.lmp", true, ctx);
|
|
|
|
draw (cx, cy + 8, p);
|
|
|
|
#undef draw
|
|
|
|
}
|
|
|
|
|
2019-07-06 05:42:53 +00:00
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Pic (int x, int y, qpic_t *pic, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2021-01-13 06:28:56 +00:00
|
|
|
static quat_t color = { 1, 1, 1, 1};
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) pic->data;
|
|
|
|
draw_pic (x, y, pic->width, pic->height, subpic,
|
2022-09-09 08:06:33 +00:00
|
|
|
0, 0, pic->width, pic->height, color, &frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Picf (float x, float y, qpic_t *pic, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2021-01-13 06:28:56 +00:00
|
|
|
static quat_t color = { 1, 1, 1, 1};
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) pic->data;
|
|
|
|
draw_pic (x, y, pic->width, pic->height, subpic,
|
2022-09-09 08:06:33 +00:00
|
|
|
0, 0, pic->width, pic->height, color, &frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_SubPic (int x, int y, qpic_t *pic,
|
|
|
|
int srcx, int srcy, int width, int height,
|
|
|
|
vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
static quat_t color = { 1, 1, 1, 1};
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) pic->data;
|
|
|
|
draw_pic (x, y, width, height, subpic, srcx, srcy, width, height,
|
2022-09-09 08:06:33 +00:00
|
|
|
color, &frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_ConsoleBackground (int lines, byte alpha, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-17 17:10:10 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2022-08-30 05:29:22 +00:00
|
|
|
float a = bound (0, alpha, 255) / 255.0;
|
|
|
|
// use pre-multiplied alpha
|
|
|
|
quat_t color = { a, a, a, a};
|
2021-01-17 17:10:10 +00:00
|
|
|
qpic_t *cpic;
|
|
|
|
cpic = Vulkan_Draw_CachePic ("gfx/conback.lmp", false, ctx);
|
2022-11-13 13:23:56 +00:00
|
|
|
int s = ctx->twod_scale;
|
|
|
|
float frac = (vid.height - s * lines) / (float) vid.height;
|
2022-09-28 09:29:53 +00:00
|
|
|
int ofs = frac * cpic->height;
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) cpic->data;
|
2022-11-13 13:23:56 +00:00
|
|
|
draw_pic (0, 0, vid.width / s, lines, subpic,
|
2022-09-28 09:29:53 +00:00
|
|
|
0, ofs, cpic->width, cpic->height - ofs, color,
|
|
|
|
&frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_TileClear (int x, int y, int w, int h, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2022-11-12 15:49:47 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
|
|
|
static quat_t color = { 1, 1, 1, 1};
|
|
|
|
vrect_t *tile_rect = VRect_New (x, y, w, h);
|
|
|
|
vrect_t *sub = VRect_New (0, 0, 0, 0); // filled in later
|
|
|
|
qpic_t *pic = dctx->backtile_pic;
|
|
|
|
subpic_t *subpic = *(subpic_t **) pic->data;
|
|
|
|
int sub_sx, sub_sy, sub_ex, sub_ey;
|
|
|
|
|
|
|
|
sub_sx = x / pic->width;
|
|
|
|
sub_sy = y / pic->height;
|
|
|
|
sub_ex = (x + w + pic->width - 1) / pic->width;
|
|
|
|
sub_ey = (y + h + pic->height - 1) / pic->height;
|
|
|
|
for (int j = sub_sy; j < sub_ey; j++) {
|
|
|
|
for (int i = sub_sx; i < sub_ex; i++) {
|
|
|
|
vrect_t *t = sub;
|
|
|
|
|
|
|
|
sub->x = i * pic->width;
|
|
|
|
sub->y = j * pic->height;
|
|
|
|
sub->width = pic->width;
|
|
|
|
sub->height = pic->height;
|
|
|
|
sub = VRect_Intersect (sub, tile_rect);
|
|
|
|
VRect_Delete (t);
|
|
|
|
draw_pic (sub->x, sub->y, sub->width, sub->height, subpic,
|
|
|
|
sub->x % pic->width, sub->y % pic->height,
|
|
|
|
sub->width, sub->height, color, &frame->quad_verts);
|
|
|
|
}
|
|
|
|
}
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_Fill (int x, int y, int w, int h, int c, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
quat_t color;
|
|
|
|
|
|
|
|
VectorScale (vid.palette + c * 3, 1.0f/255.0f, color);
|
|
|
|
color[3] = 1;
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) dctx->white_pic->data;
|
|
|
|
draw_pic (x, y, w, h, subpic, 0, 0, 1, 1, color,
|
2022-09-09 08:06:33 +00:00
|
|
|
&frame->quad_verts);
|
2021-01-13 15:44:34 +00:00
|
|
|
}
|
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
void
|
|
|
|
Vulkan_Draw_Line (int x0, int y0, int x1, int y1, int c, vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
2022-09-09 08:06:33 +00:00
|
|
|
vertqueue_t *queue = &frame->line_verts;
|
2022-05-28 09:14:26 +00:00
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
if (queue->count >= queue->size) {
|
2022-05-28 09:14:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
quat_t color = { VectorExpand (vid.palette + c * 3), 255 };
|
|
|
|
QuatScale (color, 1/255.0, color);
|
2022-09-09 08:06:33 +00:00
|
|
|
drawvert_t *verts = queue->verts + queue->count * VERTS_PER_LINE;
|
2022-05-28 09:14:26 +00:00
|
|
|
|
2022-09-28 12:53:22 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) dctx->white_pic->data;
|
|
|
|
int srcx = subpic->rect->x;
|
|
|
|
int srcy = subpic->rect->y;
|
|
|
|
int srcw = subpic->rect->width;
|
|
|
|
int srch = subpic->rect->height;
|
|
|
|
float size = subpic->size;
|
|
|
|
float sl = (srcx + 0.03125) * size;
|
|
|
|
float sr = (srcx + srcw - 0.03125) * size;
|
|
|
|
float st = (srcy + 0.03125) * size;
|
|
|
|
float sb = (srcy + srch - 0.03125) * size;
|
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
verts[0] = (drawvert_t) {
|
|
|
|
.xy = { x0, y0 },
|
2022-09-28 12:53:22 +00:00
|
|
|
.st = {sl, st},
|
2022-05-28 09:14:26 +00:00
|
|
|
.color = { QuatExpand (color) },
|
|
|
|
};
|
|
|
|
verts[1] = (drawvert_t) {
|
|
|
|
.xy = { x1, y1 },
|
2022-09-28 12:53:22 +00:00
|
|
|
.st = {sr, sb},
|
2022-05-28 09:14:26 +00:00
|
|
|
.color = { QuatExpand (color) },
|
|
|
|
};
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
queue->count++;
|
2022-05-28 09:14:26 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 15:44:34 +00:00
|
|
|
static inline void
|
2021-01-16 05:42:25 +00:00
|
|
|
draw_blendscreen (quat_t color, vulkan_ctx_t *ctx)
|
2021-01-13 15:44:34 +00:00
|
|
|
{
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *frame = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2022-09-09 11:05:31 +00:00
|
|
|
subpic_t *subpic = *(subpic_t **) dctx->white_pic->data;
|
2022-09-21 08:31:18 +00:00
|
|
|
draw_pic (0, 0, vid.width, vid.height, subpic,
|
2022-09-09 08:06:33 +00:00
|
|
|
0, 0, 1, 1, color, &frame->quad_verts);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_FadeScreen (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-13 15:44:34 +00:00
|
|
|
static quat_t color = { 0, 0, 0, 0.7 };
|
2021-01-16 05:42:25 +00:00
|
|
|
draw_blendscreen (color, ctx);
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Set2D (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Set2DScaled (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_End2D (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_DrawReset (vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-02 12:58:29 +00:00
|
|
|
Vulkan_FlushText (qfv_renderframe_t *rFrame)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-12-02 12:58:29 +00:00
|
|
|
vulkan_ctx_t *ctx = rFrame->vulkan_ctx;
|
2021-01-15 13:50:04 +00:00
|
|
|
flush_draw_scrap (ctx);
|
|
|
|
|
2021-01-12 02:27:41 +00:00
|
|
|
qfv_device_t *device = ctx->device;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
2021-02-05 01:22:32 +00:00
|
|
|
__auto_type cframe = &ctx->frames.a[ctx->curFrame];
|
2021-01-16 05:42:25 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
|
|
|
drawframe_t *dframe = &dctx->frames.a[ctx->curFrame];
|
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
if (!dframe->quad_verts.count && !dframe->slice_insts.count
|
|
|
|
&& !dframe->glyph_insts.count && !dframe->line_verts.count) {
|
2022-05-28 09:14:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-16 05:42:25 +00:00
|
|
|
VkCommandBuffer cmd = dframe->cmd;
|
2021-02-14 02:35:06 +00:00
|
|
|
//FIXME which pass?
|
2021-12-02 12:58:29 +00:00
|
|
|
DARRAY_APPEND (&rFrame->subpassCmdSets[QFV_passTranslucent], cmd);
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
VkDeviceMemory memory = dctx->draw_resource[1].memory;
|
2022-11-18 00:44:01 +00:00
|
|
|
size_t atom = device->physDev->properties->limits.nonCoherentAtomSize;
|
|
|
|
size_t atom_mask = atom - 1;
|
|
|
|
#define a(x) (((x) + atom_mask) & ~atom_mask)
|
2022-05-28 09:14:26 +00:00
|
|
|
VkMappedMemoryRange ranges[] = {
|
|
|
|
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0,
|
2022-10-03 01:29:49 +00:00
|
|
|
memory, dframe->quad_offset,
|
2022-11-18 00:44:01 +00:00
|
|
|
a(dframe->quad_verts.count * VERTS_PER_QUAD * sizeof (drawvert_t)) },
|
|
|
|
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0,
|
|
|
|
memory, dframe->slice_offset,
|
|
|
|
a(dframe->slice_insts.count * sizeof (sliceinst_t)) },
|
2022-09-02 05:23:19 +00:00
|
|
|
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0,
|
2022-10-03 01:29:49 +00:00
|
|
|
memory, dframe->glyph_offset,
|
2022-11-18 00:44:01 +00:00
|
|
|
a(dframe->glyph_insts.count * sizeof (glyphinst_t)) },
|
2022-05-28 09:14:26 +00:00
|
|
|
{ VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE, 0,
|
2022-10-03 01:29:49 +00:00
|
|
|
memory, dframe->line_offset,
|
2022-11-18 00:44:01 +00:00
|
|
|
a(dframe->line_verts.count * VERTS_PER_LINE * sizeof (drawvert_t)) },
|
2021-01-12 02:27:41 +00:00
|
|
|
};
|
2022-11-18 00:44:01 +00:00
|
|
|
#undef a
|
2022-10-03 01:29:49 +00:00
|
|
|
dfunc->vkFlushMappedMemoryRanges (device->dev, 3, ranges);
|
2021-01-12 02:27:41 +00:00
|
|
|
|
|
|
|
dfunc->vkResetCommandBuffer (cmd, 0);
|
|
|
|
VkCommandBufferInheritanceInfo inherit = {
|
|
|
|
VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO, 0,
|
2021-12-02 12:58:29 +00:00
|
|
|
rFrame->renderpass->renderpass, QFV_passTranslucent,
|
2021-01-16 05:42:25 +00:00
|
|
|
cframe->framebuffer,
|
2021-01-12 02:27:41 +00:00
|
|
|
0, 0, 0
|
|
|
|
};
|
|
|
|
VkCommandBufferBeginInfo beginInfo = {
|
|
|
|
VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO, 0,
|
|
|
|
VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT
|
|
|
|
| VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT, &inherit,
|
|
|
|
};
|
|
|
|
dfunc->vkBeginCommandBuffer (cmd, &beginInfo);
|
|
|
|
|
2021-04-18 11:40:43 +00:00
|
|
|
QFV_duCmdBeginLabel (device, cmd, "twod", { 0.6, 0.2, 0, 1});
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
if (dframe->quad_verts.count) {
|
2022-10-03 01:29:49 +00:00
|
|
|
VkBuffer quad_buffer = dframe->quad_buffer;
|
2022-11-18 00:44:01 +00:00
|
|
|
VkBuffer ind_buffer = dctx->ind_objects[0].buffer.buffer;
|
2022-10-03 01:29:49 +00:00
|
|
|
VkDeviceSize offsets[] = {0};
|
|
|
|
dfunc->vkCmdBindVertexBuffers (cmd, 0, 1, &quad_buffer, offsets);
|
|
|
|
dfunc->vkCmdBindIndexBuffer (cmd, ind_buffer, 0, VK_INDEX_TYPE_UINT32);
|
2022-09-02 05:23:19 +00:00
|
|
|
VkDescriptorSet set[2] = {
|
|
|
|
Vulkan_Matrix_Descriptors (ctx, ctx->curFrame),
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->quad_set,
|
2022-09-02 05:23:19 +00:00
|
|
|
};
|
|
|
|
VkPipelineLayout layout = dctx->layout;
|
|
|
|
dfunc->vkCmdBindDescriptorSets (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
layout, 0, 2, set, 0, 0);
|
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
dfunc->vkCmdBindPipeline (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
dctx->quad_pipeline);
|
|
|
|
dfunc->vkCmdSetViewport (cmd, 0, 1, &rFrame->renderpass->viewport);
|
|
|
|
dfunc->vkCmdSetScissor (cmd, 0, 1, &rFrame->renderpass->scissor);
|
2022-09-09 08:06:33 +00:00
|
|
|
dfunc->vkCmdDrawIndexed (cmd, dframe->quad_verts.count * INDS_PER_QUAD,
|
2022-10-03 01:29:49 +00:00
|
|
|
1, 0, 0, 0);
|
2022-09-02 05:23:19 +00:00
|
|
|
}
|
|
|
|
|
2022-11-18 00:44:01 +00:00
|
|
|
if (dframe->slice_insts.count) {
|
|
|
|
VkBuffer slice_buffer = dframe->slice_buffer;
|
|
|
|
VkBuffer ind_buffer = dctx->ind_objects[1].buffer.buffer;
|
|
|
|
VkDeviceSize offsets[] = {0};
|
|
|
|
dfunc->vkCmdBindVertexBuffers (cmd, 0, 1, &slice_buffer, offsets);
|
|
|
|
dfunc->vkCmdBindIndexBuffer (cmd, ind_buffer, 0, VK_INDEX_TYPE_UINT32);
|
|
|
|
dfunc->vkCmdBindPipeline (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
dctx->slice_pipeline);
|
|
|
|
dfunc->vkCmdSetViewport (cmd, 0, 1, &rFrame->renderpass->viewport);
|
|
|
|
dfunc->vkCmdSetScissor (cmd, 0, 1, &rFrame->renderpass->scissor);
|
|
|
|
|
|
|
|
uint32_t inst_start = 0;
|
|
|
|
for (size_t i = 0; i < dframe->slice_batch.size; i++) {
|
|
|
|
int fontid = dframe->slice_batch.a[i].descid;
|
|
|
|
uint32_t inst_count = dframe->slice_batch.a[i].count;
|
|
|
|
VkDescriptorSet set[2] = {
|
|
|
|
Vulkan_Matrix_Descriptors (ctx, ctx->curFrame),
|
|
|
|
dctx->fonts.a[fontid].set,
|
|
|
|
};
|
|
|
|
VkPipelineLayout layout = dctx->glyph_layout;
|
|
|
|
dfunc->vkCmdBindDescriptorSets (cmd,
|
|
|
|
VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
layout, 0, 2, set, 0, 0);
|
|
|
|
|
|
|
|
dfunc->vkCmdDrawIndexed (cmd, 26, inst_count, 0, 0, inst_start);
|
|
|
|
inst_start += inst_count;
|
|
|
|
}
|
|
|
|
DARRAY_RESIZE (&dframe->slice_batch, 0);
|
|
|
|
}
|
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
if (dframe->glyph_insts.count) {
|
|
|
|
VkBuffer glyph_buffer = dframe->glyph_buffer;
|
|
|
|
VkDeviceSize offsets[] = {0};
|
|
|
|
dfunc->vkCmdBindVertexBuffers (cmd, 0, 1, &glyph_buffer, offsets);
|
2022-09-02 05:23:19 +00:00
|
|
|
dfunc->vkCmdBindPipeline (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
2022-10-03 01:29:49 +00:00
|
|
|
dctx->glyph_coverage_pipeline);
|
2022-09-02 05:23:19 +00:00
|
|
|
dfunc->vkCmdSetViewport (cmd, 0, 1, &rFrame->renderpass->viewport);
|
|
|
|
dfunc->vkCmdSetScissor (cmd, 0, 1, &rFrame->renderpass->scissor);
|
2022-10-07 07:53:13 +00:00
|
|
|
|
|
|
|
uint32_t inst_start = 0;
|
|
|
|
for (size_t i = 0; i < dframe->glyph_batch.size; i++) {
|
|
|
|
int fontid = dframe->glyph_batch.a[i].descid;
|
|
|
|
uint32_t inst_count = dframe->glyph_batch.a[i].count;
|
|
|
|
VkDescriptorSet set[2] = {
|
|
|
|
Vulkan_Matrix_Descriptors (ctx, ctx->curFrame),
|
|
|
|
dctx->fonts.a[fontid].set,
|
|
|
|
};
|
|
|
|
VkPipelineLayout layout = dctx->glyph_layout;
|
|
|
|
dfunc->vkCmdBindDescriptorSets (cmd,
|
|
|
|
VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
layout, 0, 2, set, 0, 0);
|
|
|
|
|
|
|
|
dfunc->vkCmdDraw (cmd, 4, inst_count, 0, inst_start);
|
|
|
|
inst_start += inst_count;
|
|
|
|
}
|
|
|
|
DARRAY_RESIZE (&dframe->glyph_batch, 0);
|
2022-05-28 09:14:26 +00:00
|
|
|
}
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
if (dframe->line_verts.count) {
|
2022-10-03 01:29:49 +00:00
|
|
|
VkBuffer line_buffer = dframe->line_buffer;
|
|
|
|
VkDeviceSize offsets[] = {0};
|
|
|
|
dfunc->vkCmdBindVertexBuffers (cmd, 0, 1, &line_buffer, offsets);
|
|
|
|
VkDescriptorSet set[1] = {
|
2022-09-02 05:23:19 +00:00
|
|
|
Vulkan_Matrix_Descriptors (ctx, ctx->curFrame),
|
|
|
|
};
|
|
|
|
VkPipelineLayout layout = dctx->layout;
|
|
|
|
dfunc->vkCmdBindDescriptorSets (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
2022-10-03 01:29:49 +00:00
|
|
|
layout, 0, 1, set, 0, 0);
|
2022-09-02 05:23:19 +00:00
|
|
|
|
2022-05-28 09:14:26 +00:00
|
|
|
dfunc->vkCmdBindPipeline (cmd, VK_PIPELINE_BIND_POINT_GRAPHICS,
|
|
|
|
dctx->line_pipeline);
|
2022-09-09 08:06:33 +00:00
|
|
|
dfunc->vkCmdDraw (cmd, dframe->line_verts.count * VERTS_PER_LINE,
|
2022-10-03 01:29:49 +00:00
|
|
|
1, 0, 0);
|
2022-05-28 09:14:26 +00:00
|
|
|
}
|
2021-01-12 02:27:41 +00:00
|
|
|
|
2021-04-18 11:40:43 +00:00
|
|
|
QFV_duCmdEndLabel (device, cmd);
|
2021-01-12 02:27:41 +00:00
|
|
|
dfunc->vkEndCommandBuffer (cmd);
|
|
|
|
|
2022-09-09 08:06:33 +00:00
|
|
|
dframe->quad_verts.count = 0;
|
2022-11-18 00:44:01 +00:00
|
|
|
dframe->slice_insts.count = 0;
|
2022-10-03 01:29:49 +00:00
|
|
|
dframe->glyph_insts.count = 0;
|
2022-09-09 08:06:33 +00:00
|
|
|
dframe->line_verts.count = 0;
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-01-10 06:52:27 +00:00
|
|
|
Vulkan_Draw_BlendScreen (quat_t color, vulkan_ctx_t *ctx)
|
2019-07-06 05:42:53 +00:00
|
|
|
{
|
2021-01-13 15:44:34 +00:00
|
|
|
if (color[3]) {
|
2022-08-30 05:29:22 +00:00
|
|
|
quat_t c;
|
|
|
|
// pre-multiply alpha.
|
|
|
|
// FIXME this is kind of silly because q1source pre-multiplies alpha
|
|
|
|
// for blends, but this was un-done early in QF's history in order
|
|
|
|
// to avoid a pair of state changes
|
|
|
|
VectorScale (color, color[3], c);
|
|
|
|
c[3] = color[3];
|
|
|
|
draw_blendscreen (c, ctx);
|
2021-01-13 15:44:34 +00:00
|
|
|
}
|
2019-07-06 05:42:53 +00:00
|
|
|
}
|
2022-08-31 10:23:30 +00:00
|
|
|
|
2022-10-02 23:58:27 +00:00
|
|
|
int
|
2022-10-03 01:29:49 +00:00
|
|
|
Vulkan_Draw_AddFont (rfont_t *rfont, vulkan_ctx_t *ctx)
|
2022-08-31 10:23:30 +00:00
|
|
|
{
|
2022-10-03 01:29:49 +00:00
|
|
|
qfv_device_t *device = ctx->device;
|
|
|
|
qfv_devfuncs_t *dfunc = device->funcs;
|
2022-08-31 10:23:30 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
2022-10-03 01:29:49 +00:00
|
|
|
int fontid = dctx->fonts.size;
|
|
|
|
DARRAY_OPEN_AT (&dctx->fonts, fontid, 1);
|
|
|
|
drawfont_t *font = &dctx->fonts.a[fontid];
|
|
|
|
|
|
|
|
font->font = rfont;
|
|
|
|
|
|
|
|
font->resource = malloc (sizeof (drawfontres_t));
|
|
|
|
font->resource->resource = (qfv_resource_t) {
|
2022-10-07 07:53:13 +00:00
|
|
|
.name = va (ctx->va_ctx, "glyph_data:%d", fontid),
|
2022-10-03 01:29:49 +00:00
|
|
|
.va_ctx = ctx->va_ctx,
|
|
|
|
.memory_properties = VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT,
|
|
|
|
.num_objects = 4,
|
|
|
|
.objects = &font->resource->glyph_data,
|
|
|
|
};
|
2022-08-31 10:23:30 +00:00
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
font->resource->glyph_data = (qfv_resobj_t) {
|
|
|
|
.name = "geom",
|
|
|
|
.type = qfv_res_buffer,
|
|
|
|
.buffer = {
|
|
|
|
.size = rfont->num_glyphs * 4 * sizeof (glyphvert_t),
|
|
|
|
.usage = VK_BUFFER_USAGE_TRANSFER_DST_BIT
|
|
|
|
| VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
__auto_type glyph_data = &font->resource->glyph_data;
|
|
|
|
|
|
|
|
font->resource->glyph_bview = (qfv_resobj_t) {
|
|
|
|
.name = "geom_view",
|
|
|
|
.type = qfv_res_buffer_view,
|
|
|
|
.buffer_view = {
|
|
|
|
.buffer = 0,
|
|
|
|
.format = VK_FORMAT_R32G32B32A32_SFLOAT,
|
|
|
|
.offset = 0,
|
|
|
|
.size = font->resource->glyph_data.buffer.size,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
__auto_type glyph_bview = &font->resource->glyph_bview;
|
|
|
|
|
|
|
|
tex_t tex = {
|
|
|
|
.width = rfont->scrap.width,
|
|
|
|
.height = rfont->scrap.height,
|
|
|
|
.format = tex_l,
|
|
|
|
.loaded = 1,
|
|
|
|
.data = rfont->scrap_bitmap,
|
|
|
|
};
|
|
|
|
QFV_ResourceInitTexImage (&font->resource->glyph_image, "image", 0, &tex);
|
|
|
|
__auto_type glyph_image = &font->resource->glyph_image;
|
|
|
|
|
|
|
|
font->resource->glyph_iview = (qfv_resobj_t) {
|
|
|
|
.name = "image_view",
|
|
|
|
.type = qfv_res_image_view,
|
|
|
|
.image_view = {
|
|
|
|
.image = 2,
|
|
|
|
.type = VK_IMAGE_VIEW_TYPE_2D,
|
|
|
|
.format = font->resource->glyph_image.image.format,
|
|
|
|
.aspect = VK_IMAGE_ASPECT_COLOR_BIT,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
__auto_type glyph_iview = &font->resource->glyph_iview;
|
|
|
|
|
|
|
|
QFV_CreateResource (ctx->device, &font->resource->resource);
|
|
|
|
|
|
|
|
qfv_packet_t *packet = QFV_PacketAcquire (ctx->staging);
|
|
|
|
glyphvert_t *verts = QFV_PacketExtend (packet, glyph_data->buffer.size);
|
|
|
|
for (FT_Long i = 0; i < rfont->num_glyphs; i++) {
|
2022-10-20 06:50:53 +00:00
|
|
|
vrect_t *rect = &rfont->glyph_rects[i];
|
|
|
|
float x = 0;
|
|
|
|
float y = 0;
|
|
|
|
float w = rect->width;
|
|
|
|
float h = rect->height;
|
|
|
|
float u = rect->x;
|
|
|
|
float v = rect->y;
|
2022-10-03 01:29:49 +00:00
|
|
|
float s = 1.0 / rfont->scrap.width;
|
2022-10-20 06:50:53 +00:00
|
|
|
float t = 1.0 / rfont->scrap.height;
|
2022-10-03 01:29:49 +00:00
|
|
|
verts[i * 4 + 0] = (glyphvert_t) {
|
|
|
|
.offset = { x + 0, y + 0 },
|
2022-10-20 06:50:53 +00:00
|
|
|
.uv = {(u + 0.25) * s, (v + 0.25) * t },
|
2022-10-03 01:29:49 +00:00
|
|
|
};
|
|
|
|
verts[i * 4 + 1] = (glyphvert_t) {
|
|
|
|
.offset = { x + 0, y + h },
|
2022-10-20 06:50:53 +00:00
|
|
|
.uv = {(u + 0.25) * s, (v + h - 0.25) * t },
|
2022-10-03 01:29:49 +00:00
|
|
|
};
|
|
|
|
verts[i * 4 + 2] = (glyphvert_t) {
|
|
|
|
.offset = { x + w, y + 0 },
|
2022-10-20 06:50:53 +00:00
|
|
|
.uv = {(u + w - 0.25) * s, (v + 0.25) * t },
|
2022-10-03 01:29:49 +00:00
|
|
|
};
|
|
|
|
verts[i * 4 + 3] = (glyphvert_t) {
|
|
|
|
.offset = { x + w, y + h },
|
2022-10-20 06:50:53 +00:00
|
|
|
.uv = {(u + w - 0.25) * s, (v + h - 0.25) * t },
|
2022-08-31 10:23:30 +00:00
|
|
|
};
|
|
|
|
}
|
2022-10-03 01:29:49 +00:00
|
|
|
QFV_PacketCopyBuffer (packet, glyph_data->buffer.buffer,
|
|
|
|
&bufferBarriers[qfv_BB_TransferWrite_to_UniformRead]);
|
|
|
|
QFV_PacketSubmit (packet);
|
|
|
|
|
|
|
|
packet = QFV_PacketAcquire (ctx->staging);
|
|
|
|
byte *texels = QFV_PacketExtend (packet, tex.width * tex.height);
|
|
|
|
memcpy (texels, tex.data, tex.width * tex.height);
|
|
|
|
QFV_PacketCopyImage (packet, glyph_image->image.image,
|
|
|
|
tex.width, tex.height,
|
|
|
|
&imageBarriers[qfv_LT_TransferDst_to_ShaderReadOnly]);
|
|
|
|
QFV_PacketSubmit (packet);
|
|
|
|
|
|
|
|
__auto_type layouts = QFV_AllocDescriptorSetLayoutSet (1, alloca);
|
|
|
|
layouts->a[0] = Vulkan_CreateDescriptorSetLayout (ctx, "glyph_data_set");
|
|
|
|
__auto_type pool = Vulkan_CreateDescriptorPool (ctx, "glyph_pool");
|
|
|
|
__auto_type glyph_sets = QFV_AllocateDescriptorSet (device, pool, layouts);
|
|
|
|
font->set = glyph_sets->a[0];
|
|
|
|
VkDescriptorImageInfo imageInfo = {
|
|
|
|
dctx->sampler,
|
|
|
|
glyph_iview->image_view.view,
|
|
|
|
VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL,
|
|
|
|
};
|
|
|
|
VkWriteDescriptorSet write[] = {
|
|
|
|
{ VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, 0,
|
|
|
|
font->set, 0, 0, 1,
|
|
|
|
VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER,
|
|
|
|
0, 0, &glyph_bview->buffer_view.view },
|
|
|
|
{ VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET, 0,
|
|
|
|
font->set, 1, 0, 1,
|
|
|
|
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
|
|
|
&imageInfo, 0, 0 },
|
|
|
|
};
|
|
|
|
dfunc->vkUpdateDescriptorSets (device->dev, 2, write, 0, 0);
|
|
|
|
free (glyph_sets);
|
2022-10-02 23:58:27 +00:00
|
|
|
|
2022-10-07 07:53:13 +00:00
|
|
|
return fontid;
|
2022-08-31 10:23:30 +00:00
|
|
|
}
|
2022-09-02 02:38:09 +00:00
|
|
|
|
2022-09-04 11:56:38 +00:00
|
|
|
typedef struct {
|
2022-10-07 07:53:13 +00:00
|
|
|
drawframe_t *dframe;
|
|
|
|
descbatch_t *batch;
|
|
|
|
byte color[4];
|
2022-09-04 11:56:38 +00:00
|
|
|
} rgctx_t;
|
|
|
|
|
|
|
|
static void
|
2022-10-20 06:50:53 +00:00
|
|
|
vulkan_render_glyph (uint32_t glyphid, int x, int y, void *_rgctx)
|
2022-09-04 11:56:38 +00:00
|
|
|
{
|
|
|
|
rgctx_t *rgctx = _rgctx;
|
2022-10-03 01:29:49 +00:00
|
|
|
glyphqueue_t *queue = &rgctx->dframe->glyph_insts;;
|
2022-09-04 11:56:38 +00:00
|
|
|
|
2022-10-03 01:29:49 +00:00
|
|
|
if (queue->count >= queue->size) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-10-07 07:53:13 +00:00
|
|
|
rgctx->batch->count++;
|
2022-10-03 01:29:49 +00:00
|
|
|
glyphinst_t *inst = &queue->glyphs[queue->count++];
|
2022-10-20 06:50:53 +00:00
|
|
|
inst->index = glyphid;
|
2022-10-03 01:29:49 +00:00
|
|
|
QuatCopy (rgctx->color, inst->color);
|
|
|
|
inst->position[0] = x;
|
|
|
|
inst->position[1] = y;
|
2022-09-04 11:56:38 +00:00
|
|
|
}
|
|
|
|
|
2022-09-02 02:38:09 +00:00
|
|
|
void
|
2022-10-02 23:58:27 +00:00
|
|
|
Vulkan_Draw_FontString (int x, int y, int fontid, const char *str,
|
|
|
|
vulkan_ctx_t *ctx)
|
2022-09-02 02:38:09 +00:00
|
|
|
{
|
2022-09-02 05:23:19 +00:00
|
|
|
drawctx_t *dctx = ctx->draw_context;
|
2022-10-03 01:29:49 +00:00
|
|
|
if (fontid < 0 || (unsigned) fontid > dctx->fonts.size) {
|
2022-09-02 05:23:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
drawframe_t *dframe = &dctx->frames.a[ctx->curFrame];
|
2022-09-04 11:56:38 +00:00
|
|
|
|
|
|
|
rgctx_t rgctx = {
|
|
|
|
.dframe = dframe,
|
2022-10-03 01:29:49 +00:00
|
|
|
.color = { 127, 255, 153, 255 },
|
2022-09-02 05:23:19 +00:00
|
|
|
};
|
2022-10-07 07:53:13 +00:00
|
|
|
//FIXME ewwwwwww
|
2022-09-04 11:56:38 +00:00
|
|
|
rtext_t text = {
|
|
|
|
.text = str,
|
|
|
|
.language = "en",
|
|
|
|
.script = HB_SCRIPT_LATIN,
|
|
|
|
.direction = HB_DIRECTION_LTR,
|
|
|
|
};
|
|
|
|
|
2022-10-07 07:53:13 +00:00
|
|
|
rgctx.batch = &dframe->glyph_batch.a[dframe->glyph_batch.size - 1];
|
|
|
|
if (!dframe->glyph_batch.size || rgctx.batch->descid != fontid) {
|
|
|
|
DARRAY_APPEND(&dframe->glyph_batch,
|
|
|
|
((descbatch_t) { .descid = fontid }));
|
|
|
|
rgctx.batch = &dframe->glyph_batch.a[dframe->glyph_batch.size - 1];
|
|
|
|
}
|
|
|
|
|
|
|
|
rshaper_t *shaper = RText_NewShaper (dctx->fonts.a[fontid].font);
|
2022-09-04 11:56:38 +00:00
|
|
|
RText_RenderText (shaper, &text, x, y, vulkan_render_glyph, &rgctx);
|
|
|
|
RText_DeleteShaper (shaper);
|
2022-09-02 02:38:09 +00:00
|
|
|
}
|
2022-11-10 12:19:01 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
Vulkan_LineGraph (int x, int y, int *h_vals, int count, int height,
|
|
|
|
vulkan_ctx_t *ctx)
|
|
|
|
{
|
|
|
|
static int colors[] = { 0xd0, 0x4f, 0x6f };
|
|
|
|
|
|
|
|
while (count-- > 0) {
|
|
|
|
int h = *h_vals++;
|
|
|
|
int c = h < 9998 || h > 10000 ? 0xfe : colors[h - 9998];
|
|
|
|
h = min (h, height);
|
|
|
|
Vulkan_Draw_Line (x, y, x, y - h, c, ctx);
|
|
|
|
x++;
|
|
|
|
}
|
|
|
|
}
|