Search found 47 matches

by dan yalte
Sun Mar 10, 2024 8:36 am
Forum: Game Programming
Topic: Fastest way to move a sprite
Replies: 3
Views: 456

Re: Fastest way to move a sprite

Trying to tune things up. it's a blackjack simulator. I ran into an issue with other things as well. aka the Random number generator for one but it was using an older version of the compiler.When i update the compiler I will update and audit all the code when i get it running the way i want most of ...
by dan yalte
Sun Mar 10, 2024 3:38 am
Forum: Game Programming
Topic: Fastest way to move a sprite
Replies: 3
Views: 456

Fastest way to move a sprite

I have some code i wrote a while back not handy at the moment that moves card sprites for a game .The code uses a loop to move the sprites from point A to B. The issue is that it's kinda slow what's the best way to make suck a thing move faster across the screen and is there any way to very the spee...
by dan yalte
Sun Nov 20, 2022 8:24 pm
Forum: Coding Questions
Topic: IP Camera view in purebasic
Replies: 1
Views: 243

IP Camera view in purebasic

Hi does anyone know how to view an ip camera in purebasic as in RTSP, This is easy with VLC but if we can do this in purebasic then it would be very useful thanks
by dan yalte
Tue May 17, 2022 6:53 am
Forum: Game Programming
Topic: Pinball code
Replies: 6
Views: 2071

Pinball code

Anyone have some simple code for a basic pinball game. It does not have to use sprites but that would be cool also thanks.
biggest thing i want to figure out is the ball movement thanks...
by dan yalte
Wed Aug 07, 2019 5:44 am
Forum: Mac OSX
Topic: Here is what you need for a mim install for a mac
Replies: 1
Views: 1625

Re: Here is what you need for a mim install for a mac

Strange i just tried the OSX 64 bit version and it gives a strange error about incompatible resources. Time to dig into this a bit more... any ideas anybody.
by dan yalte
Mon Aug 05, 2019 7:47 am
Forum: Mac OSX
Topic: help installing Purebasic on a Mac
Replies: 2
Views: 1671

Re: help installing Purebasic on a Mac

Thanks for the info The machine i was given is a older macbook took forever to find out info i needed but i have MacOS 10.8.5 Mountain Lion on it now and all is well. Apple says it will only work with 10.6.8 but after checking forums found out i can go to 10.8.5 cause my CPU is 64 bit. apparently th...
by dan yalte
Mon Aug 05, 2019 7:46 am
Forum: Mac OSX
Topic: Here is what you need for a mim install for a mac
Replies: 1
Views: 1625

Here is what you need for a mim install for a mac

Thanks for the help to my question on a mac install of pure basic helped alot. I also figured out a lot. hope with will help someone else out so here we go. The oldest mac this will work on seems to be a Macbook A1181 with the 2.5 gig CPU core 2 duo not the slower. 2.00gig one. First you install OSX...
by dan yalte
Sun Aug 04, 2019 8:28 am
Forum: Mac OSX
Topic: help installing Purebasic on a Mac
Replies: 2
Views: 1671

help installing Purebasic on a Mac

tried installing pure basic 5.7 (X86-32 bit) version the mac said there was a problem opening the DMG file the file did verify before hand. it then said check with the developer to see if there are updates. The mac is about 2 years old what version of OSX do i need and what version of Xcode do i nee...
by dan yalte
Mon Jun 10, 2019 4:40 am
Forum: Coding Questions
Topic: whats the best for making help files (linux)
Replies: 1
Views: 674

whats the best for making help files (linux)

what's the best too for making help files in Linux (thanks)
by dan yalte
Fri Jun 07, 2019 9:35 pm
Forum: Game Programming
Topic: My blackjack Simulator so far.
Replies: 6
Views: 3848

Re: My blackjack Simulator so far.

i was just testing how to change the speed of the cards. At this point i am working on setting up all the house rules and card rule variations after that the Valuables for the seven players all of them can be either the computer or real players, After that the basic Strategy tables, The main loop fo...
by dan yalte
Thu Jun 06, 2019 6:41 pm
Forum: Off Topic
Topic: Hi i have a good test for random numbers
Replies: 18
Views: 4340

Re: Hi i have a good test for random numbers

Law of probability comes from the study of gambling and is not a term in mathematics. But it is used all the time in other areas of Science. Mathematics is used to describe the real world and properties in it very cool in it's own right. Mathematics is a form if Science all on it own. The study of g...
by dan yalte
Thu Jun 06, 2019 6:27 pm
Forum: General Discussion
Topic: Can PureBasic be ported to MINUX
Replies: 2
Views: 1533

Re: Can PureBasic be ported to MINUX

Yes but go look at where Minux is now. it's totally different. It's super small super fast. and it is super stable due to it's small size. It can Run about 80% of BSD Code out of the box. still need a few drivers before it can be a real tool. Linux is wicked in every way. Linux is what i use 95% of ...
by dan yalte
Tue Jun 04, 2019 6:46 pm
Forum: General Discussion
Topic: Can PureBasic be ported to MINUX
Replies: 2
Views: 1533

Can PureBasic be ported to MINUX

Can Pure Basic be ported to MINUX. MINUX is older then linux. First used to teach people how an OS Works. MINUX now at 3.10 and newer can run most BSD code out of the box super tiny The core of the os is Less then 20,000 lines of C code. Some machines have been running it non stop for over 20 years...
by dan yalte
Tue Jun 04, 2019 6:36 pm
Forum: Off Topic
Topic: Hi i have a good test for random numbers
Replies: 18
Views: 4340

Re: Hi i have a good test for random numbers

Well there may not be true random numbers in software. if you are close to being random there are in fact a few things you can do to test how good an RND routine is. #1 You can run a simulation of odds and compare it's results to real world results that are known. There will be some variance but if ...
by dan yalte
Tue Jun 04, 2019 7:53 am
Forum: Off Topic
Topic: Hi i have a good test for random numbers
Replies: 18
Views: 4340

Re: Hi i have a good test for random numbers

Purely software based random number generators are always weak. Only the cryptographic secure RNGs implemented by the operating system are considered really random. But because it requires some time to get a high entropy in the random bits pool you want to use cryptographic RNGs together with deter...