1

ドキュメンテーション チュートリアルに従って、スクリーン ウィンドウ システムを使用して QNX CAR 2.0 を搭載した Neutrino 6.5.0 用の C++ (qcc) で GUI を作成しています。目に見える出力は生成されず/dev/screen/{pid}/win-{n}/win-{n}status = WIN_STATUS_INVISIBLE.

({n}とを使用し{pid}て、ランタイム/動的変数の値の置換を示します)

チュートリアルを文字どおりに実行しようとしましたが、同じ結果が得られました。特に、window_group_name(mainwindowgroupまたはveryuniquewgn) の値に違いはありません。前者はチュートリアルで提案された値であり、後者は私自身のものです。

私はMCVEを構築しました:

#include <cstdlib>   // for EXIT_ constants
#include <stdio.h>   // for printf(), getchar()
#include <process.h> // for getpid()

#include <screen.h>

#define screen_err(desc) \
    if(screen_res != 0) { \
        printf("ERR screen: failed to %s\n", desc); \
        return EXIT_FAILURE; \
    }

int main_withwindow(screen_context_t scr_ctx, screen_window_t scr_win) {
    static const char *window_group_name = "veryuniquewgn";

    // Dummy to pass as ptr to enum values
    int prop;

    int screen_res;

    screen_res = screen_create_window_group(scr_win, window_group_name);
    screen_err("create window group");

    prop = SCREEN_FORMAT_RGBA8888;
    screen_res = screen_set_window_property_iv(scr_win, SCREEN_PROPERTY_FORMAT,
            &prop);
    screen_err("set window property: format -> RGBA");

    prop = SCREEN_USAGE_NATIVE;
    screen_res = screen_set_window_property_iv(scr_win, SCREEN_PROPERTY_USAGE,
            &prop);
    screen_err("set window property: usage -> native");

    screen_res = screen_create_window_buffers(scr_win, 1);
    screen_err("create window buffers");

    int win_buf_rect[4] = { 0, 0 };
    screen_res = screen_get_window_property_iv(scr_win,
            SCREEN_PROPERTY_BUFFER_SIZE, win_buf_rect + 2);
    screen_err("get window property: buffer_size");

    // Array type to easily support multi-buffering in future
    screen_buffer_t scr_buf[1];

    screen_res = screen_get_window_property_pv(scr_win,
            SCREEN_PROPERTY_RENDER_BUFFERS, (void **)scr_buf);
    screen_err("get window property: render_buffers");

    int bg[] = { SCREEN_BLIT_COLOR, 0xffffff00, SCREEN_BLIT_END };
    screen_res = screen_fill(scr_ctx, scr_buf[0], bg);
    screen_err("fill buffer with yellow");

    screen_res = screen_post_window(scr_win, scr_buf[0], 1, win_buf_rect, 0);
    screen_err("post window");

    prop = 255;
    screen_res = screen_set_window_property_iv(scr_win,
            SCREEN_PROPERTY_ZORDER, &prop);
    screen_err("set window property: zorder -> 255");

    prop = 1;
    screen_res = screen_set_window_property_iv(scr_win,
            SCREEN_PROPERTY_VISIBLE, &prop);
    screen_err("set window property: visible -> true");

    screen_res = screen_flush_context(scr_ctx, SCREEN_WAIT_IDLE);
    screen_err("flush context to idle");

    getchar();

    return EXIT_SUCCESS;
}


int main_withcontext(screen_context_t scr_ctx) {
    screen_window_t scr_win;

    int ret;
    int screen_res;

    screen_res = screen_create_window(&scr_win, scr_ctx);
    screen_err("create window");

    ret = main_withwindow(scr_ctx, scr_win);

    screen_res = screen_destroy_window(scr_win);
    screen_err("destroy window");

    return ret;
}

int main(int argc, char *argv[]) {
    printf("%d\n", getpid());

    screen_context_t scr_ctx;
    int ret;
    int screen_res;

    screen_res = screen_create_context(&scr_ctx, SCREEN_APPLICATION_CONTEXT);
    screen_err("create context");

    ret = main_withcontext(scr_ctx);

    screen_res = screen_destroy_context(scr_ctx);
    screen_err("destroy context");

    return ret;
}

define を使用すると、pidscreen_err()の最初の出力を除いて、呼び出しprintfからのエラーがないことを示す出力はありません。screen_...()それはまさに私がこれを実行するときに私が見るものです。

/dev/screen/{pid}を調べるとctx-{n}/ctx-{n}win-{n}/win-{n}予想どおり と ファイルが表示されます。前者は人間が判読できるものではありませんが、後者と、動作中の nto 6.5.0 + CAR 2.0 + libscreen アプリケーションの対応するものとの違いから、ある程度の洞察が得られます。

動作中のアプリケーションは、ソースを持っていない HMI であり、/etc/roroot として起動されます。私のアプリケーションは、root としてログインして ksh から起動されます。

どちらも 98 行のファイルなので、差分を作成しました -win-{n}左側は動作中のアプリケーションからのもので、右側は私のものです - メトリックを除きます: (39 文字を超える行を垂直方向に比較)

autonomous = 0                           autonomous = 1
status = WIN_STATUS_FULLSCREEN           status = WIN_STATUS_INVISIBLE
id string = DPY_HMI                      id string =
insert id = 1                            insert id = 3
reclip = 0                               reclip = 1

flags = WIN_FLAG_VISIBLE WIN_FLAG_FLOATING
flags = WIN_FLAG_FLOATING

usage = SCREEN_USAGE_OPENGL_ES2          usage = SCREEN_USAGE_NATIVE
order = 240                              order = 0
regions = (0,0;800,480)                  regions = (none)

clipped source viewport = (0,0;800,480 800x480)
clipped source viewport = (0,0;0,0 0x0)


clipped destination rectangle = (0,0;800,480 800x480)
clipped destination rectangle = (0,0;0,0 0x0)

transform = [[1 0 0],[0 1 0],[0 0 1]]    transform = [[0 0 0],[0 0 0],[0 0 0]]

これらの違いのうちusage、関連する への呼び出しのパラメーターを反映していることを考えると、私が期待する値を持つのは だけscreen_set_window_property_iv(...)です。残りのすべて、特にregionsflagsについては、それらの値が動作中のアプリケーションの値と異なる理由がわかりません。

ターゲットのディスプレイのネイティブ解像度は 800x480 です。

4

1 に答える 1

1

結局のところ、そのコードは完全に有効で正しいものでした。その失敗の理由は、ウィンドウを抑制することに気付いていなかったウィンドウマネージャーデーモンでした。これをオフにすると問題が解決しました。

于 2019-11-02T01:22:54.080 に答える