test/snake.c

Mon, 01 Apr 2024 18:54:19 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 01 Apr 2024 18:54:19 +0200
changeset 47
44457f6cb0a2
parent 46
d3285aed65b3
child 48
6e5b5ba2752c
permissions
-rw-r--r--

remove unnecessary scene container

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  * Copyright 2023 Mike Becker. All rights reserved.
     4  *
     5  * Redistribution and use in source and binary forms, with or without
     6  * modification, are permitted provided that the following conditions are met:
     7  *
     8  *   1. Redistributions of source code must retain the above copyright
     9  *      notice, this list of conditions and the following disclaimer.
    10  *
    11  *   2. Redistributions in binary form must reproduce the above copyright
    12  *      notice, this list of conditions and the following disclaimer in the
    13  *      documentation and/or other materials provided with the distribution.
    14  *
    15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    18  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    25  * POSSIBILITY OF SUCH DAMAGE.
    26  */
    28 #include <ascension/ascension.h>
    29 #include <cx/printf.h>
    31 static void update_fps_counter(AscSceneNode *node) {
    32     static uint64_t last_fps = 0;
    33     static uint64_t debounce = ASC_NANOS_SECOND - 1;
    34     debounce += asc_context.frame_nanos;
    35     // only update text every seconds
    36     if (debounce >= ASC_NANOS_SECOND) {
    37         debounce = 0;
    38         uint64_t fps = ASC_NANOS_SECOND;
    39         fps /= asc_context.frame_nanos;
    40         if (fps != last_fps) {
    41             last_fps = fps;
    42             snprintf(asc_text_data(node)->text, 11, "%"PRIu64" FPS", fps);
    43             asc_node_update(node);
    44         }
    45     }
    46 }
    48 static void create_fps_counter(void) {
    49     asc_set_font(asc_font(ASC_FONT_REGULAR, 24));
    50     asc_ink_rgb(255, 0, 0);
    51     AscSceneNode* node = asc_text(10, 10, "XXXXXXX FPS");
    52     asc_scene_add_behavior(node, update_fps_counter);
    53     asc_scene_node_link(asc_window_active->ui, node);
    54 }
    56 static void update_score_counter(AscSceneNode *node) {
    57     // tie to bottom left of the screen
    58     if (asc_window_active->resized) {
    59         asc_vec2i bottom_left = asc_window_active->dimensions;
    60         asc_vec2i scale = asc_get_scale2d(node);
    61         asc_set_position2d(
    62                 node,
    63                 bottom_left.x - scale.width - 10,
    64                 bottom_left.y - scale.height - 10
    65         );
    66     }
    67 }
    69 static void create_score_counter(void) {
    70     asc_set_font(asc_font(ASC_FONT_BOLD, 14));
    71     asc_ink_rgb(0, 255, 0);
    72     AscSceneNode* node = asc_text(0, 0, "Score: 0");
    73     asc_scene_add_behavior(node, update_score_counter);
    74     asc_scene_node_link(asc_window_active->ui, node);
    75 }
    77 int main(int argc, char** argv) {
    78     asc_context_initialize();
    79     if (asc_has_error()) {
    80         SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
    81                 "Fatal Error",asc_get_error(),NULL);
    82         return 1;
    83     }
    85     // create window
    86     AscWindowSettings settings;
    87     asc_window_settings_init_defaults(&settings);
    88     settings.title = "Snake";
    89     AscWindow *window = asc_window_initialize(0, &settings);
    91     // create UI elements
    92     create_fps_counter();
    93     create_score_counter();
    96     // Main Loop
    97     do {
    98         // quit application on any error
    99         if (asc_has_error()) {
   100             SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR,
   101                     "Fatal Error", asc_get_error(), window->window);
   102             asc_clear_error();
   103             break;
   104         }
   105     } while (asc_loop_next());
   107     asc_context_destroy();
   108     return 0;
   109 }

mercurial