};
#define MSG_(__level__, __vm__, ...) do { ((__vm__) ? ((struct dcpu16 *)(__vm__))->msg_cb_ : dcpu16_msg_)((__level__), __VA_ARGS__); } while (0)
-#define MSG_INFO(__vm__,...) MSG_(MSG_INFO, __vm__, __VA_ARGS__)
-#define MSG_ERROR(__vm__,...) MSG_(MSG_ERROR, __vm__, __VA_ARGS__)
+#define MSG_INFO(__vm__,...) MSG_(DCPU16_MSG_INFO, __vm__, __VA_ARGS__)
+#define MSG_ERROR(__vm__,...) MSG_(DCPU16_MSG_ERROR, __vm__, __VA_ARGS__)
#ifdef DEBUG
-#define MSG_DEBUG(__vm__,...) MSG_(MSG_DEBUG, __vm__, __VA_ARGS__)
+#define MSG_DEBUG(__vm__,...) MSG_(DCPU16_MSG_DEBUG, __vm__, __VA_ARGS__)
#else /* DEBUG */
#define MSG_DEBUG(__vm__,...) do {} while (0)
#endif /* DEBUG */
#ifdef DEBUG_DECODE
-#define MSG_DEBUG_DECODE (MSG_DEBUG + 2)
+#define MSG_DEBUG_DECODE (DCPU16_MSG_DEBUG + 2)
#endif /* DEBUG_DECODE
/* messages could be sent nowhere */
static inline
void msg_default_(unsigned int l, char *fmt, ...) {
static const char * const msg_tag_[] = { "info", "error", "debug" };
- FILE *f = (l <= MSG_INFO) ? stderr : stdout;
+ FILE *f = (l <= DCPU16_MSG_INFO) ? stderr : stdout;
va_list ap;
if (l < sizeof msg_tag_ / sizeof *msg_tag_)
struct keyboard_ *keyboard = (struct keyboard_ *)hw->data;
#ifdef DEBUG
- hw->vm->msg_cb_(MSG_DEBUG, "%s>> down:%u rfb_key:0x%04x", down, key);
+ hw->vm->msg_cb_(DCPU16_MSG_DEBUG, "%s>> down:%u rfb_key:0x%04x", down, key);
#endif /* DEBUG */
if (keysym_rfbtodcpu(key, &dcpu_key)) {
keyboard->keys_pressed[dcpu_key] = (down ? 1 : 0);
if (down) {
if ((keyboard->buf_tail + 1) % keyboard->buf_sz == keyboard->buf_head) {
- hw->vm->msg_cb_(MSG_INFO, "keyboard buffer overflow");
+ hw->vm->msg_cb_(DCPU16_MSG_INFO, "keyboard buffer overflow");
return;
}
keyboard->buf[keyboard->buf_tail] = dcpu_key;
hw->data = calloc(1, sizeof(struct keyboard_));
if (hw->data == NULL) {
- hw->vm->msg_cb_(MSG_ERROR, "%s():%s", "calloc", strerror(errno));
+ hw->vm->msg_cb_(DCPU16_MSG_ERROR, "%s():%s", "calloc", strerror(errno));
return -1;
}
((struct keyboard_ *)(hw->data))->buf = malloc(buf_sz * sizeof *((struct keyboard_ *)(hw->data))->buf);
if (((struct keyboard_ *)(hw->data))->buf == NULL) {
- hw->vm->msg_cb_(MSG_ERROR, "%s():%s", "malloc", strerror(errno));
+ hw->vm->msg_cb_(DCPU16_MSG_ERROR, "%s():%s", "malloc", strerror(errno));
free(hw->data);
hw->data = NULL;
return -1;
if (buf_sz_in) {
#ifdef DEBUG
- hw->vm->msg_cb_(MSG_DEBUG, "%s>> resizing buffer from %zu to %zu", __func__, keyboard->buf_sz, *buf_sz_in);
+ hw->vm->msg_cb_(DCPU16_MSG_DEBUG, "%s>> resizing buffer from %zu to %zu", __func__, keyboard->buf_sz, *buf_sz_in);
#endif /* DEBUG */
tmp_ptr = realloc(keyboard->buf, *buf_sz_in);
if (tmp_ptr == NULL) {
- hw->vm->msg_cb_(MSG_DEBUG, "%s():%s", "realloc", strerror(errno));
+ hw->vm->msg_cb_(DCPU16_MSG_DEBUG, "%s():%s", "realloc", strerror(errno));
return -1;
}
keyboard->buf = tmp_ptr;
* multiple vnc displays
*/
+#define MSG_(__level__, __vm__, ...) do { ((__vm__) ? ((struct dcpu16 *)(__vm__))->msg_cb_ : dcpu16_msg_)(__level__, __VA_ARGS__); } while (0)
+#define MSG_INFO(__vm__, ...) MSG_(DCPU16_MSG_INFO, __vm__, __VA_ARGS__)
+#define MSG_ERROR(__vm__, ...) MSG_(DCPU16_MSG_ERROR, __vm__, __VA_ARGS__)
#ifdef DEBUG
-#define TRACE(...) do { printf("[debug] "); printf(__VA_ARGS__); printf("\n"); } while (0)
+#define MSG_DEBUG(__vm__, ...) MSG_(DCPU16_MSG_DEBUG, __vm__, __VA_ARGS__)
#else /* DEBUG */
-#define TRACE(...) do {} while (0)
+#define MSG_DEBUG(__vm__, ...) do { } while (0)
#endif /* DEBUG */
#ifdef WANT_VARIADIC_VOIDP_CAST
void pixbuf_border_paint_(struct pixel_ *pixbuf, struct pixel_ *border) {
size_t x, y, i;
- TRACE("%s>> painting border", __func__);
+ MSG_DEBUG(NULL, "%s>> painting border", __func__);
/* top */
for (y = 0; y < PIX_BORDER; y++) {
unsigned char *font_bitmap = (unsigned char *)tile;
#if 0
- TRACE("%s>> fg:(%u,%u,%u) bg:(%u,%u,%u) font_bitmap:%02x %02x %02x %02x", __func__,
+ MSG_DEBUG(NULL, "%s>> fg:(%u,%u,%u) bg:(%u,%u,%u) font_bitmap:%02x %02x %02x %02x", __func__,
fg->r, fg->g, fg->b,
bg->r, bg->g, bg->b,
font_bitmap[0], font_bitmap[1], font_bitmap[2], font_bitmap[3]);
cell_y = (addr - base) / CELL_X;
#if 0
- TRACE("%s>> addr:0x%04x col:%u row:%u v:%hu",
+ MSG_DEBUG(NULL, "%s>> addr:0x%04x col:%u row:%u v:%hu",
__func__,
addr,
cell_x, cell_y, mem[addr]);
size_t tile;
#if 0
- TRACE("%s>> video_base:0x%04x", __func__, display->video_base);
+ MSG_DEBUG(NULL, "%s>> video_base:0x%04x", __func__, display->video_base);
#endif
if (display->cycles_until_active_) {
s->httpDir = "../classes";
#endif
- TRACE("%s>> s:%p", __func__, VOIDP(s));
- TRACE("%s>> s->kbdAddEvent:%p s->frameBuffer:%p", __func__, VOIDFP(s->kbdAddEvent), s->frameBuffer);
+ MSG_DEBUG(NULL, "%s>> s:%p", __func__, VOIDP(s));
+ MSG_DEBUG(NULL, "%s>> s->kbdAddEvent:%p s->frameBuffer:%p", __func__, VOIDFP(s->kbdAddEvent), s->frameBuffer);
return s;
}
(void)pixbuf;
- TRACE("%s>> s:%p", __func__, s);
+ MSG_DEBUG(NULL, "%s>> s:%p", __func__, s);
/* derp */
if (s)
rfbMarkRectAsModified(s, 0, 0, x, y);
- TRACE("%s>>", __func__);
+ MSG_DEBUG(NULL, "%s>>", __func__);
return retval;
}
display->cycle_state_ = 0;
-#if DEBUG
- vm->msg_cb_(MSG_DEBUG, "%s>>", __func__);
-#endif /* DEBUG */
+ MSG_DEBUG(vm, "%s>>", __func__);
}
static
if (display->blink_tally_ >= display->blink_rate) {
display->blink_tally_ = 0;
display->blink_state ^= 1;
- TRACE("%s>> blink:%u (%u cycles)", __func__, display->blink_state, display->blink_rate);
+ MSG_DEBUG(vm, "%s>> blink:%u (%u cycles)", __func__, display->blink_state, display->blink_rate);
}
display->refresh_tally_++;
if (display->refresh_tally_ >= display->refresh_rate) {
display->refresh_tally_ = 0;
if (display->render)
- TRACE("%s>> refresh", __func__);
+ MSG_DEBUG(vm, "%s>> refresh", __func__);
lem1802_pixbuf_refresh_full_(display, vm->ram);
display->render(display->renderer_data, display->pixbuf, PIX_X, PIX_Y);
}
break;
case CYCLE_COPY_TO_RAM:
- TRACE("%s>> copy_to_ram words:%zu src:%p dst_addr:0x%04x",
+ MSG_DEBUG(vm, "%s>> copy_to_ram words:%zu src:%p dst_addr:0x%04x",
__func__,
display->cycle_state_copy_words_,
VOIDP(display->cycle_state_copy_src_ptr_),
if (display->cycles_until_active_) {
display->cycles_until_active_--;
if (display->cycles_until_active_ == 0) {
- TRACE("%s>> display now active", __func__);
+ MSG_DEBUG(vm, "%s>> display now active", __func__);
}
}
}
DCPU16_WORD reg_a = vm->reg[DCPU16_REG_A];
DCPU16_WORD reg_b = vm->reg[DCPU16_REG_B];
- TRACE("%s>> A:0x%04x B:0x%04x", __func__, reg_a, reg_b);
+ MSG_DEBUG(vm, "%s>> A:0x%04x B:0x%04x", __func__, reg_a, reg_b);
switch (reg_a) {
case 0: /* MEM_MAP_SCREEN */
hw->data = calloc(1, sizeof(struct lem1802_));
if (hw->data == NULL) {
- hw->vm->msg_cb_(MSG_ERROR, "%s():%s", "calloc", strerror(errno));
+ MSG_ERROR(hw->vm, "%s():%s", "calloc", strerror(errno));
return -1;
}
((struct lem1802_ *)(hw->data))->pixbuf = calloc(PIX_X * PIX_Y, sizeof *((struct lem1802_ *)(hw->data))->pixbuf);
if (((struct lem1802_ *)(hw->data))->pixbuf == NULL) {
- hw->vm->msg_cb_(MSG_ERROR, "%s():%s", "calloc", strerror(errno));
+ MSG_ERROR(hw->vm, "%s():%s", "calloc", strerror(errno));
free(hw->data);
hw->data = NULL;
return -1;
for (r = lem1802_renderers_; r->renderer; r++) {
if (strcmp(renderer, r->name) == 0) {
display->render = r->renderer;
- TRACE("%s>> renderer set to %s", __func__, renderer);
+ MSG_DEBUG(hw->vm, "%s>> renderer set to %s", __func__, renderer);
return 0;
}
}
- hw->vm->msg_cb_(MSG_ERROR, "unknown renderer '%s'", renderer);
+ MSG_ERROR(hw->vm, "unknown renderer '%s'", renderer);
return -ENOENT;
}