Recent Posts

Pages: 1 [2] 3 4 ... 10
11
Open Forum / Re: RIP PowerBasic
« Last post by John on June 02, 2024, 04:37:27 PM »
The PowerBasic fan base should take on the ScriptBasic open source project that runs on everything and written in ANSI C. The only thing BASIC about ScriptBasic is the syntax. SB is a high level C presentation. CBASIC I wrote did the same with preprocessor defines.
12
Open Forum / RIP PowerBasic
« Last post by John on June 01, 2024, 07:27:20 PM »
It seems the PowerBasic site is gone and the community run forum is all that remains. Even if the source was made public, Zale took how to compile it to the grave.

PowerBasic should make the BASIC freeware with no liability with its use.


13
NOT BASIC / Fast wordlist search using a Trie
« Last post by jalih on May 18, 2024, 12:00:22 PM »
Here is a sample code for the 8th programming language demonstrating the use of a Trie for fast wordlist search. Builds a Trie from the internal 8th help sqlite database.

Code: [Select]

needs nk/gui
needs utils/help

22 font:system font:new "font1" font:atlas! drop
22 1.5 n:* constant ROW-HEIGHT
22 1.2 n:* constant LIST-ROW-HEIGHT

var numwords
var trie

a:new constant list-data

: getcount \ -- n
  list-data a:len n:1- nip ;

: getitem \ n -- s
  list-data swap a:_@ ;

: all-words \ -- a
  help_db @
  "SELECT cls||\":\"||nm FROM words ORDER BY cls,nm" db:exec[] nip
  a:squash ;

: build-trie \ -- tree numwords
  null false tree:trie all-words a:len >r ' tree:add a:each! drop r> ;

: new-win
  {
    name: "main",
    title: "8th Word Search",           
    wide: 0.5,                     
    high: 0.5,                   
    bg: "white"
  }
  nk:win
  "list" nk:list-new nk:m! ;

: list-item  \ s --
  nk:TEXT_LEFT "black" nk:label-colored ;

: search
  list-data a:clear
  trie @ "word" nk:get numwords @ tree:search nip
  a:+ drop ;

: main-render
  {
    bg: "white",
    font: "f1",
    flags: [ @nk:WINDOW_NO_SCROLLBAR ],
    word: ""
  }

  nk:begin
    null  { rows: [@ROW-HEIGHT, -1], cols: 1, rgap: 4 } nk:layout-grid-begin
      0 1 0 1 nk:grid rect>local nk:grid-push
        "word" nk:get 31 nk:EDIT_FIELD nk:PLUGIN_FILTER_DEFAULT nk:edit-string if
          "word" swap nk:set
          search
        else
          drop
        then
      1 1 0 1 nk:grid nk:rect>local nk:grid-push
        "list" nk:TEXT_LEFT LIST-ROW-HEIGHT getcount "list" nk:m@ dup>r nk:list-begin if
          LIST-ROW-HEIGHT 1 nk:layout-row-dynamic
            (
              getitem list-item
            ) r@ nk:list-range drop loop
          r@ nk:list-end
        then rdrop
    nk:layout-grid-end
  nk:end ;

: app:main
  build-trie numwords ! trie !
  new-win ' main-render -1 nk:render-loop ;
14
B4J / Re: B4J
« Last post by AlyssonR on May 18, 2024, 10:39:55 AM »
B4x is an excellent piece of software.

In addition to B4J there are also B4R (Arduino), B4I (IOS), B4A (Android) and what
caught my attention B4PPC (pocket PC). The last is only by request as the codebase
was frozen as those old PDAs fell out of use.

I haven't got much use out of it though.

15
NOT BASIC / Multithreaded Mandelbrot using 8th
« Last post by jalih on May 06, 2024, 09:44:55 PM »
Here is a multithreaded Mandelbrot program using 8 rendering threads + main GUI thread. Uses complex math for calculations.

Code: [Select]
needs nk/gui

libbin font/Roboto-Regular.ttf

font/Roboto-Regular.ttf font:new "font1" font:atlas! drop

600 constant WIDTH
600 constant HEIGHT

8 constant NUMTASKS

WIDTH HEIGHT img:new constant buffer

WIDTH 1.5 n:/ 40 n:+ constant x-axis
HEIGHT 2 n:/ constant y-axis
300 constant scale
50 constant iterations

: c:^  \ c n -- c
  >r dup c:abs r@ n:^ swap c:arg
  dup 2 a:close
  0 ( r@ n:* n:cos ) a:op!
  1 ( r> n:* n:sin ) a:op!
  swap >r ( r@ n:* ) a:map c:new rdrop ;
 
nullvar mand-task-ids

: mand-task  \ start-row end-row --
  ( drop
    (  drop
       0 0 c:new "z" t:!

       I x-axis n:- scale n:/
       J y-axis n:- scale n:/
       c:new dup "c" t:!

       c:>ri "y" t:! "x" t:!
       "y" t:@ 2 n:^ "y2" t:!
       "x" t:@ 0.25 n:- 2 n:^ "y2" t:@ n:+
       dup "x" t:@ 0.25 n:- n:+ n:* "y2" t:@ 4 n:/ n:<
       "x" t:@ n:1+ 2 n:^ "y2" t:@ n:+ 0.0625 n:< or !if
         ( "z" t:@ 2 c:^ "c" t:@ c:+ dup "z" t:!
           c:abs 2 n:> if
             765 n:* iterations n:/ dup>r 510 n:< !if
               255 255 r> 255 n:mod n:int 255 4 a:close "color" t:!
               break
             else
               r@ 255 n:< !if
                 255 r> 255 n:mod n:int 0 255 4 a:close "color" t:!
                 break
               else
                 r> 255 n:mod n:int 0 0 255 4 a:close "color" t:!
                 break
               then
             then
           else
             drop
             0 0 0 255 4 a:close "color" t:!
           then
         ) 0 iterations n:1- loop
         buffer lock J I "color" t:@ img:pix! unlock lock HEIGHT J n:- I "color" t:@ img:pix! unlock drop
       then
    ) 0 WIDTH n:1- loop
  null nk:do
  ) -rot loop ;

: start-tasks
  HEIGHT 2 n:/ NUMTASKS n:/mod 0 >r
  a:new ( r@ third n:r+ r@ n:1- 2 ' mand-task t:task-n a:push ) NUMTASKS n:1- times
  -rot n:+ r> tuck n:+ 2 ' mand-task t:task-n a:push mand-task-ids ! ;

: new-win
  {
    name: "main",
    wide: @WIDTH,
    high: @HEIGHT,
    resizable: true,
    title: "Mandelbrot"
  }
  nk:win ;

: main-render
  {
    title: "mandel",
    bg: "black",
    padding: [0,0],
    flags: [ @nk:WINDOW_NO_SCROLLBAR ]
  }

  nk:begin
    null 1 1 nk:layout-grid-begin
      0 1 0 1 nk:grid nk:rect>local nk:grid-push buffer lock nk:image buffer unlock drop
    nk:layout-grid-end
  nk:end ;

: app:main
  ' start-tasks w:is nk:rendering
  new-win ' main-render -1 nk:render-loop ;
16
NOT BASIC / Tetris game for Windows in Fortran
« Last post by jalih on March 25, 2024, 08:21:33 AM »
I wrote a simple Tetris game sample for Windows using Simply Fortran and it's AppGraphics library.

Sources + runnable binary
17
NOT BASIC / Re: Minesweeper game for Windows using Fortran programming language
« Last post by John on March 21, 2024, 10:53:39 AM »
Congrats Jalih!

Your post was number 7200.

Cool minesweeper game.
18
NOT BASIC / Minesweeper game for Windows using Fortran programming language
« Last post by jalih on March 20, 2024, 12:22:38 PM »
Hi all,

I wrote a simple Minesweeper game for Windows using Simply Fortran and it's AppGraphics library.

Source code + runnable binary
19
Open Forum / BASIC
« Last post by John on February 26, 2024, 08:52:12 PM »
It would be interesting to hear from the members of this forum their views of BASIC languages that are still being used. What are the benefits and downsides to their use.

I hope everyone is doing well.
20
Open Forum / Re: AllBASIC Forum
« Last post by John on December 20, 2023, 04:15:15 PM »
I'm using the ScriptBasic proxy web server for a QuickBooks Online app for a major payments processing company.
Pages: 1 [2] 3 4 ... 10