Search found 1402 matches

by yetifoot
Sep 22, 2012 13:58
Forum: Beginners
Topic: Image buffer without ImageCreate
Replies: 16
Views: 3015

Re: Image buffer without ImageCreate

Hi all, something to note here. If you create your own image buffer, you should be aware of something that will cause imagedestroy to fail hard if you don't match the behaviour. FB's imagecreate aims to be paragraph aligned (aligned to 16 bytes). This is for people who wish to use fast SSE commands ...
by yetifoot
Sep 22, 2012 13:04
Forum: Linux
Topic: mp4
Replies: 3
Views: 1820

Re: mp4

OK, sorry to keep posting on this one :P This is my last post, my time and ideas are now low ;) This little prog now accepts the keys "q" to quit, and "p" to pause/play ' Thanks to Landeel screenres 640,480,,32 dim as integer xid ScreenControl 2, xid 'shell "mplayer -wid &qu...
by yetifoot
Sep 22, 2012 12:31
Forum: Linux
Topic: mp4
Replies: 3
Views: 1820

Re: mp4

Here is another piece of code I found from Landeel that is closer to the 'mplayer control' method. ' Thanks to Landeel screenres 640,480,,32 dim as integer xid ScreenControl 2, xid shell "mplayer -wid "+str(xid)+" -really-quiet " & command(1) I think to add controls to this, ...
by yetifoot
Sep 22, 2012 12:24
Forum: Linux
Topic: mp4
Replies: 3
Views: 1820

Re: mp4

It is possible, I think that the way some people have done it, is they become a kind of controlling window for mplayer. I have not tried this before. Here is the closest piece of code that I have for this. It only deals with the image part, not the sound. It works by telling ffmpeg to output as bitm...
by yetifoot
Jun 28, 2012 11:13
Forum: Community Discussion
Topic: Did ya miss me? :P New stuff. :)
Replies: 13
Views: 5154

Re: Did ya miss me? :P New stuff. :)

Here's some of the information about the licensing that I know of. Runtime library: The runtime library has an extension to the LGPL license to allow static linking. This is stated within the readme.txt and elsewhere in the source. Graphics library: This is usually the one that people are more uncle...
by yetifoot
Jun 16, 2012 15:10
Forum: Windows
Topic: Want Visual Basic 6?
Replies: 2
Views: 1539

Re: Want Visual Basic 6?

The VB6 link was removed by a moderator as VB6 can't be freely distributed like that. However if you want a version of VB to play with, without the legality issues, you may have some luck searching for VB6 Working Model Edition, or VB5 Custom Control Edition (VB5CCE). These were versions that MS mad...
by yetifoot
Nov 25, 2011 1:07
Forum: Archive
Topic: Deep Deadly Dungeons Isometric
Replies: 6
Views: 3280

It's just the version number I got up to when working on it. I hadn't done anything on it for about 2 years I think so I decided to just package up what I have and post it.
by yetifoot
Nov 24, 2011 23:57
Forum: Archive
Topic: Deep Deadly Dungeons Isometric
Replies: 6
Views: 3280

Deep Deadly Dungeons Isometric

I added an isometric graphics view to rdc's ddd (deep deadly dungeons), by writing an iso engine, and borrowing some graphics from Falconseye, a version of nethack. Press ? in the game for the keys. Shift-Q quits, g gets, z zaps, arrows move, etc. http://www.sendspace.com/file/gwf40o http://i.imgur....
by yetifoot
Jul 23, 2011 3:39
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74336

I tried to update it but wasn't able to, I can login but can't change anything.

I updated the first post on this topic anyway to fix the broken links for the two most recent versions.
by yetifoot
Jul 13, 2011 2:59
Forum: General
Topic: Optimizations
Replies: 65
Views: 9238

Someone earlier in the thread asked why andalso/orelse are slow. When i added those operators, I based them on top of IIF. It's certainly possible to do it much better, but that was the only way I could find at the time that worked correctly, so I decided it was better to have the operators, working...
by yetifoot
Jul 12, 2011 7:12
Forum: Sources, Examples, Tips and Tricks
Topic: Neural net
Replies: 77
Views: 17248

I want to see a neural net do 1+1 = 2, or better, general addition I have played with this in the past, and trained a network to do addition. The way I did it was to break down the inputs into bits, so my input layer, for adding two 4 bit numbers had 8 inputs of value 0 or 1, and then my output lay...
by yetifoot
Jul 02, 2011 22:49
Forum: Sources, Examples, Tips and Tricks
Topic: Quick and dirty self hosting BASICish compiler
Replies: 32
Views: 12949

Hi thanks for reposting the files. If a licence is needed, it can be considered as either of:

zlib licence
http://www.gzip.org/zlib/zlib_license.html

wtfpl
http://sam.zoy.org/wtfpl/

But, as fast as I am concerned it's public domain, you can do whatever you want with it, and no need to credit me.
by yetifoot
Jul 01, 2011 7:46
Forum: Linux
Topic: brainf*ck compiler for 32 bit linux.
Replies: 5
Views: 3421

brainf*ck compiler for 32 bit linux.

Here's a fun little program. It takes as its input a brainf*ck program, and outputs a 32 bit linux static binary. Who needs such luxuries as an assembler or linker when you can output RAW x86 MACHINE CODE and your own ELF header? Instructions. Save the files in the code blocks as bfc.bas and hello.b...
by yetifoot
Jun 13, 2011 23:54
Forum: Community Discussion
Topic: The problem of using SINGLE with TIMER in Linux.
Replies: 9
Views: 2371

Maybe it would be advantageous if the assignment of Timer to a Single threw a compiler warning. I don't really see this as feasible, unless it's the ultra simple case of: dim as single t1 = timer() People can easily subvert it. (It would would be good (in some ways) to have a QB-compatible timer() ...
by yetifoot
Jun 13, 2011 10:22
Forum: Community Discussion
Topic: The problem of using SINGLE with TIMER in Linux.
Replies: 9
Views: 2371

The problem of using SINGLE with TIMER in Linux.

Something that caused a number of issues over the years when i helped people port their code to Linux, was they used the SINGLE datatype in their timing code. This would cause strange bugs. My solution each time was to just change their datatype to DOUBLE. It was always curious to me, because this i...