mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-01-29 10:18:30 +01:00
212da0a966
byuu says: These WIPs-within-WIPs are getting more and more broken ... this isn't going the way I wanted. But ... this time around, I've revamped the entire ruby API again, to solve a bunch of tough problems that have always made using ruby really clunky. But there are *so many* ruby drivers that it's going to take a long time to work through them all. This WIP is only going to run bsnes, and only on FreeBSD, and only with some drivers. hiro's Application::initialize() now calls hiro::initialize(), which you define inside of your hiro apps. This lets you call Application::setName(...) before anything else in hiro runs. This is essential on Xorg to set program icons, for instance. With the ruby rewrite and the change to hiro, I can get away from the need to make everything in bsnes/higan pointers to objects, and can now just declare them as regular objects.
34 lines
731 B
C++
34 lines
731 B
C++
#pragma once
|
|
|
|
#include <nall/platform.hpp>
|
|
#include <nall/directory.hpp>
|
|
#include <nall/file.hpp>
|
|
#include <nall/function.hpp>
|
|
#include <nall/hid.hpp>
|
|
#include <nall/image.hpp>
|
|
#include <nall/matrix.hpp>
|
|
#include <nall/queue.hpp>
|
|
#include <nall/range.hpp>
|
|
#include <nall/set.hpp>
|
|
#include <nall/shared-pointer.hpp>
|
|
#include <nall/string.hpp>
|
|
#include <nall/unique-pointer.hpp>
|
|
#include <nall/vector.hpp>
|
|
#include <nall/dsp/resampler/cubic.hpp>
|
|
#include <nall/hash/crc32.hpp>
|
|
|
|
using nall::function;
|
|
using nall::queue;
|
|
using nall::shared_pointer;
|
|
using nall::string;
|
|
using nall::unique_pointer;
|
|
using nall::vector;
|
|
|
|
namespace ruby {
|
|
|
|
#include <ruby/video/video.hpp>
|
|
#include <ruby/audio/audio.hpp>
|
|
#include <ruby/input/input.hpp>
|
|
|
|
}
|