0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-05 05:45:05 +00:00
Commit graph

1812 commits

Author SHA1 Message Date
Andrew Alderwick
f6b7195578 Update binary builds to point to drive.100r.co. 2023-06-09 18:13:44 +01:00
Devine Lu Linvega
e930804c4b Do not print message on quit 2023-06-09 09:29:25 -07:00
Devine Lu Linvega
6d93884d85 (circle128) Minor opt 2023-06-08 22:11:49 -07:00
Devine Lu Linvega
f80279e1f2 (circle128) Fixed build instructions 2023-06-08 21:32:29 -07:00
Devine Lu Linvega
ade58a229a (tables.c) Renamed to circle128.c 2023-06-08 21:21:22 -07:00
Devine Lu Linvega
fe10cfecef Improved usage standard message 2023-06-08 09:47:18 -07:00
Devine Lu Linvega
650c38115d Removed the echo prints from the build file 2023-06-08 09:31:01 -07:00
Devine Lu Linvega
b4a6a16da8 (wireworld.tal) Removed, moved to uxn-utils 2023-06-07 16:36:57 -07:00
neauoire
59035ab291 (wireworld.tal) Fixed mouse picking issue 2023-06-07 09:58:10 -07:00
neauoire
3f162f6258 (wireworld.tal) Match colors to standard wireworld specs 2023-06-07 09:51:27 -07:00
neauoire
5dd7fec729 Removed clear between redraws and moved to set_window_size 2023-06-07 08:23:42 -07:00
neauoire
e147b46b55 Snake_cased some SDL variables 2023-06-07 08:03:28 -07:00
neauoire
2810592c1b (fib.tal) Fixed incorrect definition 2023-06-06 14:33:20 -07:00
neauoire
1666aebea2 Merge branch 'main' of git.sr.ht:~rabbits/uxn 2023-06-06 11:49:37 -07:00
neauoire
6fc314b5a0 (fib.tal) Added tail-recursive version 2023-06-06 11:49:28 -07:00
Andrew Alderwick
c543827b76 (asma) Correct exit status from software/asma.tal runs. 2023-06-05 19:06:13 +01:00
Devine Lu Linvega
8d90298e57 (fib.tal) Improved example 2023-06-01 21:53:28 -07:00
Devine Lu Linvega
1d4ae74e41 Removed multiplication from SET macro in uxn core 2023-05-17 20:39:03 -07:00
Sevan Janiyan
305b8469b0 Use the correct definition to obtain snprintf(3)
At some point snprintf(3) prototype became guarded off in stdio.h.
Defining _C99_SOURCE makes it visible.
On legacy Darwin, such a guard was not present so the definition
has no impact on the build, but on "modern" macos it has the desired
effect.
Build tested on OS X 10.4 and macos 10.15.
2023-05-15 08:32:48 -07:00
Sevan Janiyan
b5b3177c68 Switch to using SDL_CreateRGBSurface() SDL_CreateRGBSurfaceWithFormat() was introduced in SDL 2.0.5 whereas SDL_CreateRGBSurface() is available since SDL 2.0. This allows uxn to run on legacy systems where it's not possible to reach SDL 2.0.5 but prior versions are, such as Mac OS X Tiger. 2023-05-14 19:34:55 -07:00
Sevan Janiyan
822a7fea54 Use the audio format native to host AUDIO_S16 defaults to little endian format which causes issues when running on big endian systems. Use AUDIO_S16SYS instead which sets to whatever endian the system uxn is being built on is. 2023-05-14 19:34:55 -07:00
d_m
310ba97ef6 Improve screen vector timing somewhat.
This patch tries to improve the accuracy of our
screen refresh timing. Notably, it tries to ensure
we don't introduce extra delay in our timing based
on how long the screen vector takes to evaluate.

We also try to ensure we only call SDL_Delay when
we have at least 1ms to wait.
2023-05-09 13:12:23 -07:00
Devine Lu Linvega
09d9990a62 (screen) Fixes warnings 2023-05-04 20:45:52 -07:00
Devine Lu Linvega
77edd1dbbf (screen) Renamed pixels attr to layer 2023-05-04 20:32:44 -07:00
Devine Lu Linvega
d80885ee22 (screen) Housekeeping 2023-05-04 20:17:38 -07:00
Devine Lu Linvega
98bd2a7849 (screen) Use uxn_screen global 2023-05-04 17:43:44 -07:00
Devine Lu Linvega
1fdb91ecb8 (amiga.tal) Tiny refactoring 2023-05-04 17:15:27 -07:00
Devine Lu Linvega
204805b586 (amiga.tal) Do not flip rotation direction on floor collision 2023-05-04 16:25:41 -07:00
Nojus Raskevicius
64f2692734 Remove fps limit on bounce for amiga.tal 2023-05-04 15:58:34 -07:00
d_m
11a893d10d Reverse ball rotation after bouncing. 2023-05-04 15:57:00 -07:00
Devine Lu Linvega
9416a0e813 Removed layer struct 2023-05-04 11:33:31 -07:00
Devine Lu Linvega
8f98281d89 (screen) Only repaint changed pixels 2023-05-04 11:15:16 -07:00
Sigrid Solveig Haflínudóttir
a740105b76 enable "install" target on Plan 9, install as games/uxn* 2023-05-02 23:01:29 +00:00
Sigrid Solveig Haflínudóttir
c7f3014fe9 zoom: ignore if 0, ie if the screen is somehow TOO small to do any scaling 2023-05-02 22:53:07 +00:00
Devine Lu Linvega
83ba7e05ea Added mock behavior for the friend port 2023-05-02 10:31:33 -07:00
Matus Laslofi
d2e054346f Declare snprintf to fix builds on macOS
For some reason on macOS, the functions `snprintf` and `vsnprintf` are
not in the X/Open 5 (ANSI C89) standard but rather in the X/Open
6 (ISO C99). A simplest solution seems to be to declaring the missing
functions before using them, which is what I did here. Another option
is to use the C99 standard with `#define _XOPEN_SOURCE 600`, which
seems to be an overkill for such a niche issue.

Quoting from the STANDARDS section in `man 3 snprintf` on macOS:

> ...the snprintf() and vsnprintf() functions conform to ISO/IEC
> 9899:1999 (“ISO C99”)...
2023-05-01 09:27:49 -07:00
Devine Lu Linvega
ce0cc5a352 Do not center on resize 2023-04-26 12:04:44 -07:00
Devine Lu Linvega
0da70d6bd1 Allow tiny sizes for the screen 2023-04-26 12:01:45 -07:00
Devine Lu Linvega
ebf31ecb03 (uxnemu) Removed debug line 2023-04-22 14:57:26 -07:00
Devine Lu Linvega
40d6c889bc Set Console/type after memory is initialized 2023-04-22 14:56:12 -07:00
Devine Lu Linvega
3038d5c40b (console) Use 0x00 for no-queue 2023-04-17 11:27:54 -07:00
Devine Lu Linvega
d8bee29626 (console) Use 0x1 for no-args 2023-04-17 11:19:37 -07:00
Devine Lu Linvega
98282cb1a6 Moved error printing to system.c 2023-04-17 11:03:11 -07:00
Devine Lu Linvega
b76b7b6e9b (console.tal) Test argument queue 2023-04-17 10:55:45 -07:00
Devine Lu Linvega
9a882a64c7 (uxnemu) Write arguments end in console device 2023-04-17 10:41:03 -07:00
Devine Lu Linvega
1bf0ffc5e5 (uxnemu) Display usage when no roms and no params 2023-04-17 10:29:39 -07:00
Devine Lu Linvega
453f491918 (uxnemu) Display new zoom values in usage 2023-04-17 09:59:00 -07:00
Devine Lu Linvega
72e23f0260 (uxnemu) Simplified boot sequence 2023-04-17 09:48:27 -07:00
Devine Lu Linvega
d1dc143912 (uxnemu) Only set zoom scale once on boot 2023-04-17 09:36:55 -07:00
Devine Lu Linvega
6021b2b63d (console.tal) Fixed underflow error on quit 2023-04-16 22:07:47 -07:00