2012-07-07 08:08:28 +04:00
|
|
|
/*
|
|
|
|
* drawlines
|
|
|
|
*
|
|
|
|
* Test application to draw lines to a window.
|
|
|
|
*/
|
2012-02-12 04:54:34 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "lib/window.h"
|
Context-based graphics library.
All graphics library commands now take a gfx_context_t pointer, which
points to a simple datastructure describing a rendering context (width,
height, depth, total size, front buffer, backbuffer; where backbuffer =
front buffer when not in double-buffering mode, thus we always render to
backbuffer except on a flip). This may have caused a minor speed
reduction, but I don't really care as it's far more important that we
support multiple graphics contexts.
TODO:
- Shared Memory Fonts library (there are a couple of apps that use these
so-called "shmem fonts" on their own; we need a dedicated library for
them)
- Break off "TTK" GUI toolkit into its own library. Since it's just a
callback-based button framework, this shouldn't be too hard right now.
Also, with the previous tick, I'll be able to put labels on controls
and start using text in more places.
2012-04-17 22:21:34 +04:00
|
|
|
#include "lib/graphics.h"
|
2012-02-12 04:54:34 +04:00
|
|
|
|
2012-11-16 11:33:45 +04:00
|
|
|
int left, top, width, height;
|
|
|
|
window_t * wina;
|
|
|
|
gfx_context_t * ctx;
|
2012-02-12 04:54:34 +04:00
|
|
|
|
|
|
|
int32_t min(int32_t a, int32_t b) {
|
|
|
|
return (a < b) ? a : b;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t max(int32_t a, int32_t b) {
|
|
|
|
return (a > b) ? a : b;
|
|
|
|
}
|
|
|
|
|
2012-11-16 11:33:45 +04:00
|
|
|
void resize_callback(window_t * window) {
|
|
|
|
width = window->width;
|
|
|
|
height = window->height;
|
|
|
|
reinit_graphics_window(ctx, wina);
|
|
|
|
draw_fill(ctx, rgb(0,0,0));
|
|
|
|
}
|
2012-02-12 04:54:34 +04:00
|
|
|
|
|
|
|
|
2012-11-16 11:33:45 +04:00
|
|
|
int main (int argc, char ** argv) {
|
|
|
|
left = 100;
|
|
|
|
top = 100;
|
|
|
|
width = 500;
|
|
|
|
height = 500;
|
2012-02-12 04:54:34 +04:00
|
|
|
|
2012-11-16 11:33:45 +04:00
|
|
|
setup_windowing();
|
|
|
|
resize_window_callback = resize_callback;
|
2012-02-13 03:00:21 +04:00
|
|
|
|
2012-02-12 04:54:34 +04:00
|
|
|
/* Do something with a window */
|
2012-11-16 11:33:45 +04:00
|
|
|
wina = window_create(left, top, width, height);
|
2012-02-12 04:54:34 +04:00
|
|
|
assert(wina);
|
Context-based graphics library.
All graphics library commands now take a gfx_context_t pointer, which
points to a simple datastructure describing a rendering context (width,
height, depth, total size, front buffer, backbuffer; where backbuffer =
front buffer when not in double-buffering mode, thus we always render to
backbuffer except on a flip). This may have caused a minor speed
reduction, but I don't really care as it's far more important that we
support multiple graphics contexts.
TODO:
- Shared Memory Fonts library (there are a couple of apps that use these
so-called "shmem fonts" on their own; we need a dedicated library for
them)
- Break off "TTK" GUI toolkit into its own library. Since it's just a
callback-based button framework, this shouldn't be too hard right now.
Also, with the previous tick, I'll be able to put labels on controls
and start using text in more places.
2012-04-17 22:21:34 +04:00
|
|
|
|
2012-11-16 11:33:45 +04:00
|
|
|
ctx = init_graphics_window(wina);
|
Context-based graphics library.
All graphics library commands now take a gfx_context_t pointer, which
points to a simple datastructure describing a rendering context (width,
height, depth, total size, front buffer, backbuffer; where backbuffer =
front buffer when not in double-buffering mode, thus we always render to
backbuffer except on a flip). This may have caused a minor speed
reduction, but I don't really care as it's far more important that we
support multiple graphics contexts.
TODO:
- Shared Memory Fonts library (there are a couple of apps that use these
so-called "shmem fonts" on their own; we need a dedicated library for
them)
- Break off "TTK" GUI toolkit into its own library. Since it's just a
callback-based button framework, this shouldn't be too hard right now.
Also, with the previous tick, I'll be able to put labels on controls
and start using text in more places.
2012-04-17 22:21:34 +04:00
|
|
|
draw_fill(ctx, rgb(0,0,0));
|
|
|
|
|
2012-02-23 10:58:14 +04:00
|
|
|
int exit = 0;
|
|
|
|
while (!exit) {
|
2012-12-10 11:07:04 +04:00
|
|
|
w_keyboard_t * kbd = poll_keyboard_async();
|
2012-02-16 09:14:36 +04:00
|
|
|
if (kbd != NULL) {
|
2012-02-23 10:58:14 +04:00
|
|
|
if (kbd->key == 'q')
|
|
|
|
exit = 1;
|
2012-02-16 09:14:36 +04:00
|
|
|
free(kbd);
|
|
|
|
}
|
|
|
|
|
Context-based graphics library.
All graphics library commands now take a gfx_context_t pointer, which
points to a simple datastructure describing a rendering context (width,
height, depth, total size, front buffer, backbuffer; where backbuffer =
front buffer when not in double-buffering mode, thus we always render to
backbuffer except on a flip). This may have caused a minor speed
reduction, but I don't really care as it's far more important that we
support multiple graphics contexts.
TODO:
- Shared Memory Fonts library (there are a couple of apps that use these
so-called "shmem fonts" on their own; we need a dedicated library for
them)
- Break off "TTK" GUI toolkit into its own library. Since it's just a
callback-based button framework, this shouldn't be too hard right now.
Also, with the previous tick, I'll be able to put labels on controls
and start using text in more places.
2012-04-17 22:21:34 +04:00
|
|
|
draw_line(ctx, rand() % width, rand() % width, rand() % height, rand() % height, rgb(rand() % 255,rand() % 255,rand() % 255));
|
2012-02-12 04:54:34 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
teardown_windowing();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|