00cc9309cb
de6e324bdseparate emu thread10d3daf86Roms List improvements95d202f37Let's make the rom list process on a separate thread so the emulator doesnt take ages to load.fc306967fWow the ROM Header was just completely busted. Game list view works nowbad1691eefuck this shit2b59e5f46game list in progressd26417b83remappable inputs in progressac4af8106inpute72abc240update readme430139dc9Qt6 frontend3080d4d45Fix this small bug too08cd13b85Cop0 unused functions do not actually pose a threat (as per manual). They don't do anything, so shall we.61bb4fb44make idle loop detection a little more specific with where the load goesb037de4c3SAZDFsdff12e81e73eneed to figure out why n64-systemtest loops indefinitely at some address that appears to be valid (i think it's me not invalidating the cache properly)204f0e13bidle skipping seems to work!cb8bb634asdkfjlasdf58e5c89c1Fix compilation issue on my machine (no idea)24fb2898eattempting more serious idle skipping214719577Place rsp.Step inside cached interpreter. Gains about 3 more fpsbb97dcc23mmmmm920b77d38wjkhasdfjhkasdf430ccdab4it's a start...4f42a673aCached interpreter plays Mario 64. Start looking into RSP as wellc9a030787idle skipping works!5fbda03cenew idea366637abaIdle skipping... maybe?609fa2fb0Cache instructions implemented but broken lmao. Commented out for nowe140a6d12- Stop using inheritance for CPU, instead use composition. - Introduce KAIZEN_JIT_ENABLED optional define instead of relying on __aarch64__ and the like. - More cache work68e613057prep cache impl811b4d809fix clang formatfda755f7didkd5024ebbfsmall MI refactor in preparation of (eventually) implementing the RDRAM interface properly694b45341Merge commit '206dcdedf195fb320913584180edb12c7731e396' as 'external/SDL'206dcdedfSquashed 'external/SDL/' content from commit 4d17b99d0a4d16e1cb4need to update sdl848b19920Fix compilation errordb61b5299Merge commit 'e94a94559f28e49678fbcf72199a5258137b0fe9' as 'external/imgui'e94a94559Squashed 'external/imgui/' content from commit 02e9b8cac52edb3757need to update imguic1a705e86Emulate weird JALR behaviour4b4c32f4bFix exception for "unusable COP1" in 4 instructions i missed accidentally (again)df5828142Bug putting 0s in the log everywheref8b580048Make isviewer a sink to file8241e9735Fix exception for "unusable COP1" in 4 instructions i missed accidentallyb29715f20small changesd9a620bc1make use of my new small utility library0d1aa938eAdd 'external/ircolib/' from commit 'ce3cd726c8df8388d554abf8bb55d55020eb4450'e64eb40b3Fuck git git-subtree-dir: external/ircolib git-subtree-split:de6e324bde
250 lines
8.5 KiB
C
250 lines
8.5 KiB
C
/*
|
|
Simple DirectMedia Layer
|
|
Copyright (C) 1997-2026 Sam Lantinga <slouken@libsdl.org>
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
warranty. In no event will the authors be held liable for any damages
|
|
arising from the use of this software.
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
including commercial applications, and to alter it and redistribute it
|
|
freely, subject to the following restrictions:
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
claim that you wrote the original software. If you use this software
|
|
in a product, an acknowledgment in the product documentation would be
|
|
appreciated but is not required.
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
misrepresented as being the original software.
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
*/
|
|
|
|
#ifndef SDL_time_h_
|
|
#define SDL_time_h_
|
|
|
|
/**
|
|
* # CategoryTime
|
|
*
|
|
* SDL realtime clock and date/time routines.
|
|
*
|
|
* There are two data types that are used in this category: SDL_Time, which
|
|
* represents the nanoseconds since a specific moment (an "epoch"), and
|
|
* SDL_DateTime, which breaks time down into human-understandable components:
|
|
* years, months, days, hours, etc.
|
|
*
|
|
* Much of the functionality is involved in converting those two types to
|
|
* other useful forms.
|
|
*/
|
|
|
|
#include <SDL3/SDL_error.h>
|
|
#include <SDL3/SDL_stdinc.h>
|
|
|
|
#include <SDL3/SDL_begin_code.h>
|
|
/* Set up for C function definitions, even when using C++ */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* A structure holding a calendar date and time broken down into its
|
|
* components.
|
|
*
|
|
* \since This struct is available since SDL 3.2.0.
|
|
*/
|
|
typedef struct SDL_DateTime
|
|
{
|
|
int year; /**< Year */
|
|
int month; /**< Month [01-12] */
|
|
int day; /**< Day of the month [01-31] */
|
|
int hour; /**< Hour [0-23] */
|
|
int minute; /**< Minute [0-59] */
|
|
int second; /**< Seconds [0-60] */
|
|
int nanosecond; /**< Nanoseconds [0-999999999] */
|
|
int day_of_week; /**< Day of the week [0-6] (0 being Sunday) */
|
|
int utc_offset; /**< Seconds east of UTC */
|
|
} SDL_DateTime;
|
|
|
|
/**
|
|
* The preferred date format of the current system locale.
|
|
*
|
|
* \since This enum is available since SDL 3.2.0.
|
|
*
|
|
* \sa SDL_GetDateTimeLocalePreferences
|
|
*/
|
|
typedef enum SDL_DateFormat
|
|
{
|
|
SDL_DATE_FORMAT_YYYYMMDD = 0, /**< Year/Month/Day */
|
|
SDL_DATE_FORMAT_DDMMYYYY = 1, /**< Day/Month/Year */
|
|
SDL_DATE_FORMAT_MMDDYYYY = 2 /**< Month/Day/Year */
|
|
} SDL_DateFormat;
|
|
|
|
/**
|
|
* The preferred time format of the current system locale.
|
|
*
|
|
* \since This enum is available since SDL 3.2.0.
|
|
*
|
|
* \sa SDL_GetDateTimeLocalePreferences
|
|
*/
|
|
typedef enum SDL_TimeFormat
|
|
{
|
|
SDL_TIME_FORMAT_24HR = 0, /**< 24 hour time */
|
|
SDL_TIME_FORMAT_12HR = 1 /**< 12 hour time */
|
|
} SDL_TimeFormat;
|
|
|
|
/**
|
|
* Gets the current preferred date and time format for the system locale.
|
|
*
|
|
* This might be a "slow" call that has to query the operating system. It's
|
|
* best to ask for this once and save the results. However, the preferred
|
|
* formats can change, usually because the user has changed a system
|
|
* preference outside of your program.
|
|
*
|
|
* \param dateFormat a pointer to the SDL_DateFormat to hold the returned date
|
|
* format, may be NULL.
|
|
* \param timeFormat a pointer to the SDL_TimeFormat to hold the returned time
|
|
* format, may be NULL.
|
|
* \returns true on success or false on failure; call SDL_GetError() for more
|
|
* information.
|
|
*
|
|
* \threadsafety This function is not thread safe.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC bool SDLCALL SDL_GetDateTimeLocalePreferences(SDL_DateFormat *dateFormat, SDL_TimeFormat *timeFormat);
|
|
|
|
/**
|
|
* Gets the current value of the system realtime clock in nanoseconds since
|
|
* Jan 1, 1970 in Universal Coordinated Time (UTC).
|
|
*
|
|
* \param ticks the SDL_Time to hold the returned tick count.
|
|
* \returns true on success or false on failure; call SDL_GetError() for more
|
|
* information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC bool SDLCALL SDL_GetCurrentTime(SDL_Time *ticks);
|
|
|
|
/**
|
|
* Converts an SDL_Time in nanoseconds since the epoch to a calendar time in
|
|
* the SDL_DateTime format.
|
|
*
|
|
* \param ticks the SDL_Time to be converted.
|
|
* \param dt the resulting SDL_DateTime.
|
|
* \param localTime the resulting SDL_DateTime will be expressed in local time
|
|
* if true, otherwise it will be in Universal Coordinated
|
|
* Time (UTC).
|
|
* \returns true on success or false on failure; call SDL_GetError() for more
|
|
* information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC bool SDLCALL SDL_TimeToDateTime(SDL_Time ticks, SDL_DateTime *dt, bool localTime);
|
|
|
|
/**
|
|
* Converts a calendar time to an SDL_Time in nanoseconds since the epoch.
|
|
*
|
|
* This function ignores the day_of_week member of the SDL_DateTime struct, so
|
|
* it may remain unset.
|
|
*
|
|
* \param dt the source SDL_DateTime.
|
|
* \param ticks the resulting SDL_Time.
|
|
* \returns true on success or false on failure; call SDL_GetError() for more
|
|
* information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC bool SDLCALL SDL_DateTimeToTime(const SDL_DateTime *dt, SDL_Time *ticks);
|
|
|
|
/**
|
|
* Converts an SDL time into a Windows FILETIME (100-nanosecond intervals
|
|
* since January 1, 1601).
|
|
*
|
|
* This function fills in the two 32-bit values of the FILETIME structure.
|
|
*
|
|
* \param ticks the time to convert.
|
|
* \param dwLowDateTime a pointer filled in with the low portion of the
|
|
* Windows FILETIME value.
|
|
* \param dwHighDateTime a pointer filled in with the high portion of the
|
|
* Windows FILETIME value.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC void SDLCALL SDL_TimeToWindows(SDL_Time ticks, Uint32 *dwLowDateTime, Uint32 *dwHighDateTime);
|
|
|
|
/**
|
|
* Converts a Windows FILETIME (100-nanosecond intervals since January 1,
|
|
* 1601) to an SDL time.
|
|
*
|
|
* This function takes the two 32-bit values of the FILETIME structure as
|
|
* parameters.
|
|
*
|
|
* \param dwLowDateTime the low portion of the Windows FILETIME value.
|
|
* \param dwHighDateTime the high portion of the Windows FILETIME value.
|
|
* \returns the converted SDL time.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC SDL_Time SDLCALL SDL_TimeFromWindows(Uint32 dwLowDateTime, Uint32 dwHighDateTime);
|
|
|
|
/**
|
|
* Get the number of days in a month for a given year.
|
|
*
|
|
* \param year the year.
|
|
* \param month the month [1-12].
|
|
* \returns the number of days in the requested month or -1 on failure; call
|
|
* SDL_GetError() for more information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC int SDLCALL SDL_GetDaysInMonth(int year, int month);
|
|
|
|
/**
|
|
* Get the day of year for a calendar date.
|
|
*
|
|
* \param year the year component of the date.
|
|
* \param month the month component of the date.
|
|
* \param day the day component of the date.
|
|
* \returns the day of year [0-365] if the date is valid or -1 on failure;
|
|
* call SDL_GetError() for more information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfYear(int year, int month, int day);
|
|
|
|
/**
|
|
* Get the day of week for a calendar date.
|
|
*
|
|
* \param year the year component of the date.
|
|
* \param month the month component of the date.
|
|
* \param day the day component of the date.
|
|
* \returns a value between 0 and 6 (0 being Sunday) if the date is valid or
|
|
* -1 on failure; call SDL_GetError() for more information.
|
|
*
|
|
* \threadsafety It is safe to call this function from any thread.
|
|
*
|
|
* \since This function is available since SDL 3.2.0.
|
|
*/
|
|
extern SDL_DECLSPEC int SDLCALL SDL_GetDayOfWeek(int year, int month, int day);
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#include <SDL3/SDL_close_code.h>
|
|
|
|
#endif /* SDL_time_h_ */
|