aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/dllmain.cpp
blob: f71a39a8135da46a597f14d6431eba7dd272329e (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
#include "pch.h"
#include "hooks.h"
#include "main.h"
#include "squirrel.h"
#include "dedicated.h"
#include "sourceconsole.h"
#include <iostream>

BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
                     )
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    case DLL_THREAD_ATTACH:
        DisableThreadLibraryCalls(hModule);
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    
    InitialiseNorthstar();

    return TRUE;
}

// this is called from the injector and initialises stuff, dllmain is called multiple times while this should only be called once
void InitialiseNorthstar()
{
    AllocConsole();
    freopen("CONOUT$", "w", stdout);
    AddLoggingSink(DefaultLoggingSink);

    // apply hooks
    InstallInitialHooks();

    if (IsDedicated())
        AddDllLoadCallback("engine.dll", InitialiseDedicated);
    
    if (!IsDedicated())
    {
        AddDllLoadCallback("client.dll", InitialiseClientSquirrel);
        AddDllLoadCallback("client.dll", InitialiseSourceConsole);
    }

    AddDllLoadCallback("server.dll", InitialiseServerSquirrel);
}