NewI\O startrek

Startrek.nio is a small app that demonstrates displaying an image file and and playing a sound file.

Here is a screenshot:

Here is the sourcecode:

/******************************************************************************
 *
 *    startrek.c
 *
 *    Copyright (C) 2002, 2006  Chris Nystrom
 *
 *    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 whatsoever.
 *
 *    For more license information see:
 *
 *      http://www.gnu.org/copyleft/gpl.html
 *
 *    Contact Author at:
 *
 *    Chris Nystrom
 *    11013 Prairie Dove Circle
 *    Austin, Texas  78758
 *
 *    E-Mail: cnystrom@gmail.com
 *    Blog:   http://conversazione.blogspot.com
 *    AIM:    nystromchris
 *
 *    Soli Deo Gloria
 *
 */

#include "nio_lib.h"

int main(int argc, char *argv[])
{
        int font, image_num, sound_num;
        color black, white;

        nio_app_init("startrek", "0.1");

        black = nio_get_color("black");
        white = nio_get_color("white");

        nio_set_screen(640, 480, black);

        font = nio_load_sys_font(NIO_DEFAULT_FONT,
                                 NIO_DEFAULT_PTSIZE,
                                 NIO_STYLE_NORMAL, white, black);

        nio_term_init(font, black, 10, 10, 34, 80);

        nio_print_at(1, 1, "NIO Star Trek version 0.01", FALSE);

        nio_print_at(3, 1, "Downloading resources...", FALSE);

        nio_paint();

        image_num = nio_load_image("startrek/startrek.jpg");
        sound_num = nio_load_sound("startrek/c604.wav");

        nio_clear_screen(black, FALSE);

        nio_print_at(1, 1, "NIO Star Trek version 0.01", FALSE);

        nio_draw_image(image_num, 300, 75, FALSE);

        nio_paint();

        nio_play_sound(sound_num, 0);

        nio_print_at(3, 0, " ", TRUE);

        nio_pause("Hit any key to exit...");

        nio_free_image(image_num);
        nio_free_sound(sound_num);
        nio_free_font(font);

        nio_exit();
        exit(0);
}


Updated: 01/19/06 ccn