Skip to content

Instantly share code, notes, and snippets.

View ITotalJustice's full-sized avatar
💜
Coding away...

ITotalJustice

💜
Coding away...
View GitHub Profile
<!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! -->
@ITotalJustice
ITotalJustice / main.cpp
Last active April 27, 2021 08:47
zip folder example
// 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>
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)
#pragma once
#include "../nlohmann/json_fwd.hpp"
#include <vector>
#include <string>
#include <optional>
namespace cr {
#pragma once
#include "../nlohmann/json_fwd.hpp"
#include <cstdint>
#include <string>
#include <vector>
#include <optional>
namespace funi {
#include "crunchy.hpp"
#include "crapi/crapi.hpp"
#include "../utils/logger.hpp"
#include <algorithm>
#include <ranges>
namespace fs {
static auto CheckCrDataError(const auto& a) noexcept {
@ITotalJustice
ITotalJustice / helper.hpp
Created November 9, 2021 18:00
nlohmann::json helper
#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>> {
@ITotalJustice
ITotalJustice / hlsparse.cpp
Created November 9, 2021 18:01
crapi hls parser
#include "hlsparse.hpp"
#include "../../utils/logger.hpp"
#ifndef NDEBUG
#include <iostream>
#endif
#include <cassert>
#include <ranges>
#include <algorithm>
#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 {
@ITotalJustice
ITotalJustice / CMakeLists.txt
Last active February 10, 2022 11:36
psp sdl2 sample
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)