如何使用C / C ++和SDL2将文件字体加载到RAM中?

问题描述 投票:3回答:2

根据我所学到的“最佳实践”,我们应该将程序所需的资源加载到RAM中,避免对用户硬盘驱动器的不必要请求。使用SDL2,我总是在将图像文件加载到RAM后释放它们。 (文件 - >表面 - >纹理 - >自由文件/表面)。因此,如果我的其他应用程序更改了文件,我的程序会忽略它,因为该文件不再被它使用。

现在在第16课,我正在学习使用附加SDL_ttf

但是,使用SDL_ttf插件我找不到释放font.ttf文件的方法,也将其加载到RAM中。我只能通过指针看到它。在我看来,每次渲染文本时都会继续读取文件。

如何将其加载到RAM中,因此渲染调用RAM位置,而不是HD中的文件?

完整代码

#define SDL_MAIN_HANDLED
#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>

int G = 255;

int main (void) {SDL_SetMainReady();

    int SCREEN_WIDTH   = 800;
    int SCREEN_HEIGHT  = 600;
    bool QUIT_APPLICATION = false;
    SDL_Event union_Event_manager;

    SDL_Color      str_White_colour = {255,255,255,255};    
    SDL_Window   * ptr_Window       = nullptr;
    SDL_Surface  * ptr_Text_Surface = nullptr;
    SDL_Surface  * ptr_Main_surface = nullptr;
    SDL_RWops    * ptr_str_rwops    = nullptr;
    TTF_Font     * ptr_Font         = nullptr;


    SDL_Init(SDL_INIT_VIDEO);
    TTF_Init();


    ptr_Window = SDL_CreateWindow("Lesson 16 - TrueTypeFonts", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);
    ptr_Main_surface = SDL_GetWindowSurface(ptr_Window);

    ptr_str_rwops = SDL_RWFromFile("FreeMono.ttf", "r");

    ptr_Font = TTF_OpenFontIndexRW(ptr_str_rwops, 1, 72, 0);

    ptr_Text_Surface = TTF_RenderText_Solid(ptr_Font, "Hello World", str_White_colour);

    while(!QUIT_APPLICATION){

        while(SDL_PollEvent(&union_Event_manager) != 0 ){
            if (union_Event_manager.type == SDL_QUIT) {QUIT_APPLICATION = true;}
        /*END WHILE*/}

    SDL_BlitSurface(ptr_Text_Surface, NULL, ptr_Main_surface, NULL);
    SDL_UpdateWindowSurface(ptr_Window);
    /*END WHILE*/}

    TTF_CloseFont(ptr_Font); 
// if called before any rendering, the app crashes, as supposed to.
// So, how free the **file** and keep using its content from RAM?
    SDL_RWclose(ptr_str_rwops);
    SDL_FreeSurface(ptr_Text_Surface);
    SDL_FreeSurface(ptr_Main_surface);
    SDL_DestroyWindow(ptr_Window);

    ptr_Font         = nullptr;
    ptr_str_rwops    = nullptr;
    ptr_Text_Surface = nullptr;
    ptr_Main_surface = nullptr;
    ptr_Window       = nullptr;

    TTF_Quit();
    SDL_Quit();

return (0);}

失败1:

创建一个结构来保存文件中的信息。

TTF_Font str_Font; // Error in compilation ''incomplete type''
str_Font = *ptr_Font;
TTF_CloseFont(ptr_Font);
ptr_Font = nullptr;
ptr_Font = &str_Font;   

失败的原因:我误解了文件的工作原理。该结构仅保存有关文件的信息,而不包含媒体本身。这种方法没用,并且在释放指针后崩溃程序(渲染试图取消引用nullptr)。

失败2:

使用内置函数来释放资源。

ptr_Font = TTF_OpenFontIndexRW(SDL_RWFromFile("FreeMono.ttf", "r"), 1, 72, 0);

失败的原因:我不明白为什么,因为第二个参数(非零)指定它应该在使用后释放资源。它也发生在上面完成的源代码中,我只是将函数分成两行。

失败3:

创建结构以保存有关指针的信息。

ptr_str_rwops = SDL_RWFromFile("FreeMono.ttf", "r");
str_rwops = *ptr_str_rwops;
SDL_RWclose(ptr_str_rwops); // crashes  the program
ptr_str_rwops = nullptr;
ptr_str_rwops = &str_rwops; // useless: file still in use.

失败的原因:结构RWops似乎不保存文件,只保留有关它的信息。所以它是失败1和2的总和。

失败4:

试图加载文件作为对象。

ptr_LoadObject = (TTF_Font*)SDL_LoadObject("FreeMono.ttf");
ptr_str_rwops = SDL_RWFromFile((const char *)ptr_LoadObject, "r");

失败原因:此功能适用于共享的操作系统文件。功能使用错误。


更新2019-04-05

失败5

试图使用memcpy将文件副本直接复制到RAM中

long int func_discover_file_size(char* file){

    long int var_file_size = 0;
    FILE * ptr_file = nullptr;

    ptr_file = fopen(file, "rb");
    fseek(ptr_file , 0L , SEEK_END);
    var_file_size = ftell(ptr_file);
    fclose(ptr_file);
    return var_file_size;

/*END func_discover_file_size*/}

int main (void) {

    /*cut unrelated code*/

    void * ptr_load_file = nullptr;
    void * ptr_File_copy = nullptr;
    long int var_file_size = 0;

    /*cut unrelated code*/

    var_file_size = func_discover_file_size("FreeMono.ttf");
    // works fine and returns correct size of file.

    ptr_File_copy = (char*) calloc (1, var_file_size);
    // memory allocation works fine (tested)

    ptr_load_file = fopen("FreeMono.ttf", "rb");
    // file loaded correctly. Test with FOR LOOP shows content of file in console.

    memcpy(ptr_File_copy, ptr_load_file, var_file_size);
    // program crashes in line above

失败的原因:看起来我不知道如何正确使用memcpy。我尝试了许多强制转换功能和指针(void,char),尝试将指针类型更改为char,void,FILE,尝试输出到第三个指针...

现在我正在寻找一个好的灵魂来启发我的方式...... :-p

注意:C标记为SDL

c++ c sdl-2
2个回答
2
投票

虽然freetype(SDL_ttf使用)不会多次读取字体(它不能,因为它的API不提供seek功能),SDL_ttf在字体关闭之前不会关闭文件/ RWops。您可以通过手动将文件加载到内存缓冲区并将该内存用作RWops来将数据提供给SDL_ttf来实现您所描述的内容,例如: (没有错误检查,没有免费等等 - 这只是一个例子):

    /* 'slurp' file (read entire file into memory buffer)
     * there are multiple ways to do so
     */
    SDL_RWops *file_rw = SDL_RWFromFile("font.ttf", "rb");
    Sint64 file_sz = file_rw->size(file_rw);
    void *membuf = malloc(file_sz);
    file_rw->read(file_rw, membuf, 1, file_sz);
    file_rw->close(file_rw);

    /* use memory buffer as RWops */
    SDL_RWops *mem_rw = SDL_RWFromConstMem(membuf, file_sz);
    TTF_Font *font = TTF_OpenFontRW(mem_rw, 1, font_size);

    /* free(membuf) when you're done with the font */

0
投票

关于memcpy的第二个问题可以通过以下方式解决:

memcpy复制文件对象,而不是其内容。为了阅读它:

使用fread函数从FILE*读取:fread(ptr_File_copy, 1, var_file_size, ptr_load_file)而不是memcpy。

© www.soinside.com 2019 - 2024. All rights reserved.