summaryrefslogtreecommitdiffstats
path: root/apps/plugins/puzzles/help.c
blob: 4a2560e4c4a5a1d5d585dc3e143964ac9d42f62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include "help.h"
#include "lib/simple_viewer.h"

void full_help(const char *name)
{
    int ch_num = -1;

    /* dirty hack */
    if(!strcmp(name, "Train Tracks"))
        name = "Tracks";

    /* search the help text for a chapter with this name */
    for(int ch = 0; ch < help_numchapters; ++ch)
    {
        char *str = help_text + help_chapteroffsets[ch];
        char *ptr = strchr(str, ':') + 1;
        const char *namep = name;
        if(*ptr++ != ' ')
            continue;

        while(*ptr == *namep && *ptr && *namep)
        {
            ptr++;
            namep++;
        }
        if(*namep == '\0' && (*ptr == '\n' || *ptr == ' ')) /* full match */
        {
            ch_num = ch;
            break;
        }
    }
    if(ch_num < 0)
    {
        rb->splashf(HZ * 2, "No topic found for `%s' (REPORT ME!)", name);
        return;
    }
    char *buf = smalloc(help_maxlen + 1);
    rb->memset(buf, 0, help_maxlen + 1);
    if(ch_num < help_numchapters - 1)
    {
        /* safe to look ahead */
        memcpy(buf, help_text + help_chapteroffsets[ch_num], help_chapteroffsets[ch_num + 1] - help_chapteroffsets[ch_num]);
    }
    else
        rb->strlcpy(buf, help_text + help_chapteroffsets[ch_num], help_maxlen + 1);

    rb->lcd_set_foreground(LCD_WHITE);
    unsigned old_bg = rb->lcd_get_background();
    rb->lcd_set_background(LCD_BLACK);
    view_text(name, buf);
    rb->lcd_set_background(old_bg);
    sfree(buf);
}