summaryrefslogtreecommitdiff
path: root/src/strings.cpp
blob: 73adf8a1151ff1376f7b3a2760f7622a23e3f146 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#if SPECIAL
#include "main.h"
#endif

static bool32 Hacko = false;
static int32 EffectSel = -1;

// I'm using the filter's grep functionality to sort the effects for us
// (probably severely suboptimal), so I'm just using this callback function to
// signal back to our code that tab has been pressed in the text edit.
static int
EffectConsoleCallback(ImGuiInputTextCallbackData* data)
{
    if (data->EventFlag == ImGuiInputTextFlags_CallbackCompletion)
    {
        Hacko = true;
    }
    return 0;
}

static void
CopyStrings(void *Dest, void *Data)
{
    for (int i = 0; i < STRING_SIZE; i++)
    {
        *((char *)Dest + i) = *((char *)Data + i);
    }
}

static uint16
String_AddToFile(memory *Memory, char *Char, bool32 NoUndo)
{
    uint16 FileIndex = Memory_Block_AllocateNew(Memory, F_Strings);
    block_string *String = (block_string *)Memory_Block_AddressAtIndex(Memory, F_Strings, FileIndex, 0);
    if (NoUndo)
        History_Action_Block_Swap(Memory, F_Strings, String);
    String->Occupied = 1;
    uint16 i = 0;
    while (Char[i] != '\0') {
        String->Char[i] = Char[i];
        i++;
    }
    return FileIndex;
}

static bool32
String_Compare(char *String1, char *String2, uint32 Length)
{
    for (int i = 0; i < Length; i++) {
        if (String1[i] != String2[i])
            return 0;
    }
    return 1;
}

static uint32
String_Length(char *Char)
{
    int32 i = 0;
    while (Char[i] != '\0') {
        i++;
    }
    return i;
}

static void
String_Copy(char *String1, char *String2, uint32 Length)
{
    int32 i = 0;
    while (i < Length) {
        String1[i] = String2[i];
        i++;
    }
}

static void
String_Append(char *String1, char *String2, uint32 Length)
{
    int32 i = 0;
    while (String1[i] != '\0') {
        String1[i] = String2[i];
    }
}

static void
String_PathToLayerName(char *Path, char *Dest)
{
    uint32 i = 0;
    uint32 LastSlash = 0;
    while (Path[i] != '\0') {
        if (Path[i] == '/')
            LastSlash = i;
        i++;
    }
    for (int s = 0; s < i - LastSlash; s++)
        Dest[s] = Path[s + LastSlash + 1];
}