Allegro / C ++:Screen是空指针

时间:2015-10-25 20:33:09

标签: c++ codeblocks allegro

刚刚安装了Allegro 4.2.2,我试图运行一个简单的程序。

启动时,屏幕全黑,但输入通常会对按键作出反应。我发现screen是0x00000000(nullptr)。无论如何,set_gfx_mode不会返回任何错误。

MinGW根本没有喊叫,没有任何警告,没有任何警告。代码块仅将liballeg.aliballeg_s.a与其他选项相关联:

-lalleg_s -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lole32 -ldinput -lddraw -ldxguid -lwinmm -ldsound

以下是代码:

#include <stdio.h>
#include <stdlib.h>

#include <allegro.h>

#include <time.h>


int main() {
    srand( time( NULL ) );
    allegro_init();
    // screen
    set_color_depth( 32 );
    if ( set_gfx_mode( GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0 ) < 0 ) {
        printf( "Error set_gfx_mode: %s\n", allegro_error );
    }
    BITMAP* buffer = create_bitmap_ex( 32, SCREEN_W, SCREEN_H );
    printf( "Screen location: %p\n", screen );
    // keyboard and mouse
    install_keyboard();
    install_mouse();
    show_os_cursor( 1 );
    // main loop
    bool done = false;
    while ( !done ) {
        // keys
        if ( keypressed() ) {
            int keyID = readkey() & 0xFF;
            switch ( keyID ) {
                case 27: { // escape
                    done = true;
                    break;
                }
            }
        }
        // rendering
        clear_bitmap( buffer );
        rectfill( buffer, 50, 50, 150, 150, 0x00FFFFFF );
        blit( buffer, screen, 0, 0, 0, 0, SCREEN_W, SCREEN_H );
    }
    destroy_bitmap( buffer );
    allegro_exit();
    return 0;
}

END_OF_MAIN()

1 个答案:

答案 0 :(得分:0)

这是一个非常简单的错误,您没有在代码的任何位置定义SCREEN_WSCREEN_H的值。

#include 行后添加:

#define SCREEN_W 640
#define SCREEN-h 480

当然,只要图形驱动程序/卡支持,您就可以将值更改为您想要的任何屏幕尺寸。