Search found 177 matches

by fatman2021
Jun 22, 2022 11:18
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Re: Project Manhattan

Unless you would like to be instead listed as an individual? Of course, he should. It is called common courtesy. You are covered under "The FreeBASIC Development Team." I have heard it all now. You must understand that if I listed everyone who contributed to this project in one way or ano...
by fatman2021
Jun 22, 2022 2:29
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Re: Project Manhattan

D.J.Peters wrote: Jun 22, 2022 1:36 Microsoft acquired GitHub maybe they thinks in a different way about it ;-)
This former Microsoft operating system engineer seems to think otherwise.

Image

https://www.youtube.com/clip/UgkxKXPa1p ... vu9HmdXN8y
by fatman2021
Jun 22, 2022 1:05
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Re: Project Manhattan

By the way, you can get the ROMs as part of C64 forever free express edition: https://www.c64forever.com/ And the books can be downloaded free of charge from archive.org: http://archive.org/ Cloanto is a subsidiary of Amiga Corporation. http://www.generationamiga.com/2020/07/16/c-a-acquisition-unvei...
by fatman2021
Jun 22, 2022 0:50
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Re: Project Manhattan

and in your ~600MB github are more than 20 books with copyright by Nintendo, OSBORNE, euroPress and other companies storing stolen books at home on your HD is your private thing but share it via github is a krime ! They are owned by companies who have gone out of business or do not have any interes...
by fatman2021
Jun 22, 2022 0:27
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Re: Project Manhattan

you used my: OpenGL shader language FreeBASIC wrapper ! my: Shadertoy FreeBASIC runtime environment ! my: C64 and CPU6510 emulator ! ... shame on you Joshy You are covered under "The FreeBASIC Development Team. " Unless you would like to be instead listed as an individual? A big chunk of ...
by fatman2021
Jun 21, 2022 22:34
Forum: Projects
Topic: Project Manhattan
Replies: 56
Views: 8748

Project Manhattan

Project Manhattan is a next-generation MOS 6510-based CPU/GPU combo system on a chip emulator for gaming and business applications written in FreeBASIC. See the README.md file for more information: https://github.com/fatman2021/project-manhattan/blob/master/README.md GitHub site: https://github.com/...
by fatman2021
Jun 07, 2022 2:18
Forum: DOS
Topic: FreeBASIC-1.09.0-dos bug
Replies: 2
Views: 2792

Re: FreeBASIC-1.09.0-dos bug

Ok. I fixed it using the following code:

Code: Select all

function exp2f(a as float) as float
#if defined(__FB_DOS__)
  return cast(float,exp2f(cast(float,a)))
#else
  return powf(2.0, a)
#endif  
end function
by fatman2021
Jun 07, 2022 0:48
Forum: DOS
Topic: FreeBASIC-1.09.0-dos bug
Replies: 2
Views: 2792

FreeBASIC-1.09.0-dos bug

I get the following error message when trying to compile a raymarcher written by D.J.Peters using version 1.09.0 of FreeBASIC for DOS. https://i.imgur.com/eeksuIb.png HEADER FILE: glslstyle.bi MAIN PROGRAM: #include "glslstyle.bi" ' this uniform's vars are global for the fragment shader di...
by fatman2021
Jun 05, 2022 13:28
Forum: Sources, Examples, Tips and Tricks
Topic: OpenGL shader language math in FreeBASIC.
Replies: 23
Views: 5811

Re: OpenGL shader language math in FreeBASIC.

OpenGL shader language math. It's fresh not all tested ATM. :-) Based on this reference: http://www.shaderific.com/glsl-functions/ Forum limit 60,000 I can't post it here right klick save as: glslstyle.bi Joshy data types: scalar, vec2, vec3, vec4, mat2, mat3, mat4 vector union: vec2: x,y : s,t vec...
by fatman2021
May 14, 2021 15:28
Forum: Community Discussion
Topic: I divorced with OpenIndiana
Replies: 5
Views: 1556

Re: I divorced with OpenIndiana

UPDATE: ICU version 66.1
This update is ABI-incompatible , make sure to recompile any local application against the new libraries.
https://twitter.com/OpenIndiana/status/ ... 9562814466
by fatman2021
Nov 03, 2020 13:28
Forum: DOS
Topic: Beginner help for DOS version
Replies: 17
Views: 7241

Re: Beginner help for DOS version

It(test5.bmp) should be in the same folder that fat3.exe is in.
by fatman2021
Nov 03, 2020 3:33
Forum: DOS
Topic: Beginner help for DOS version
Replies: 17
Views: 7241

Re: Beginner help for DOS version

#include once "fbgfx.bi" using FB Dim As uInteger x, y, f0, f1, f2 Dim As uByte r, g, b, a ScreenRes 3200,1800, 32, , GFX_ALPHA_PRIMITIVES: Cls Do Until x = 1919 and Y = 1019 select case x mod 255 case &B000000 to &B001111: r = x mod 255 case &B010000 to &B011111: r = x - &...
by fatman2021
Oct 31, 2020 17:21
Forum: DOS
Topic: fltkal Toolkit
Replies: 0
Views: 2342

fltkal Toolkit

fltkal is a DOS fork of the Fast Light Toolkit (FLTK) using Allegro4 and DJGPP. The fork required renaming files to 8.3 conventions. Other than that, however, the API is compatible with the 1.4.x branch. https://github.com/markjolesen/fltkal https://sourceforge.net/projects/fltk-dos/?fbclid=IwAR1NmE...
by fatman2021
Oct 31, 2020 3:32
Forum: DOS
Topic: Beginner help for DOS version
Replies: 17
Views: 7241

Re: Beginner help for DOS version

#include once "fbgfx.bi" using FB Dim As uInteger x, y Dim As uByte r, g, b, a ScreenRes 3200,1800, 32, , GFX_ALPHA_PRIMITIVES: Cls Do Until x = 3199 and Y = 1799 r=r+1 if r>255 then r=r-1:g=g+1 if g>255 then g=g-1:b=b+1 if b>255 then b=b-1 pset(x,y),255 shl 24 + r shl 16 + g shl 8 + b x=...