This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>TotalGB</title> | |
</head> | |
<body style="background-color: #2c0c2c;"> | |
<!-- Our filepicker! --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// example of how to zip entire folder (recursively) into mem, using minizip-1.2 | |
// MINZIP_SOURCE: https://github.com/zlib-ng/minizip-ng/tree/1.2 | |
// g++ main.cpp ./minizip/*.c -lz -DNOUNCRYPT -DNOCRYPT -std=c++17 | |
#include <cstdio> | |
#include <cstdint> | |
#include <cstdlib> | |
#include <vector> | |
#include <string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void render_scanline_bg_simple(struct NES_Core* nes, uint8_t line) | |
{ | |
const uint8_t row = (line >> 3) & 31; | |
const uint8_t fine_line = line & 7; | |
const uint16_t pattern_table_addr = ppu_get_bg_pattern_table_addr(nes); | |
uint16_t nametable_addr = ppu_get_nametable_addr(nes) + (row * 32); | |
for (uint8_t col = 0; col < 32; ++col) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "../nlohmann/json_fwd.hpp" | |
#include <vector> | |
#include <string> | |
#include <optional> | |
namespace cr { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "../nlohmann/json_fwd.hpp" | |
#include <cstdint> | |
#include <string> | |
#include <vector> | |
#include <optional> | |
namespace funi { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "crunchy.hpp" | |
#include "crapi/crapi.hpp" | |
#include "../utils/logger.hpp" | |
#include <algorithm> | |
#include <ranges> | |
namespace fs { | |
static auto CheckCrDataError(const auto& a) noexcept { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "json.hpp" | |
#include <optional> | |
using json = nlohmann::json; | |
namespace nlohmann { | |
// https://github.com/nlohmann/json/issues/1910#issuecomment-615843605 | |
template <typename T> | |
struct adl_serializer<std::optional<T>> { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "hlsparse.hpp" | |
#include "../../utils/logger.hpp" | |
#ifndef NDEBUG | |
#include <iostream> | |
#endif | |
#include <cassert> | |
#include <ranges> | |
#include <algorithm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "curl_wrapper.hpp" | |
#include "../../utils/logger.hpp" | |
// todo: fix dkp curl. complains about fd_set missing | |
#ifdef __SWITCH__ | |
#include <sys/select.h> | |
#endif | |
#include <curl/curl.h> | |
namespace curl { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.18.0) | |
project(TotalGB LANGUAGES C) | |
set(myname "TotalGB_SDL2") | |
add_executable(${myname} main.c) | |
option(UPSTREAM_SDL "use upstream sdl2" ON) | |
if (UPSTREAM_SDL) |