Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 37
» Latest member: Ludwig
» Forum threads: 191
» Forum posts: 1,485

Full Statistics

Online Users
There are currently 66 online users.
» 0 Member(s) | 65 Guest(s)
Bing

Latest Threads
City Fighter
Forum: NaaLaa 7 Code
Last Post: johnno56
Yesterday, 08:12 PM
» Replies: 3
» Views: 136
RW3
Forum: NaaLaa 7 Code
Last Post: Marcus
04-11-2025, 05:22 AM
» Replies: 3
» Views: 179
ugBASIC! Good BASIC!
Forum: Programming
Last Post: luwal
04-04-2025, 11:35 PM
» Replies: 6
» Views: 535
Happy Birthday
Forum: Everything else
Last Post: johnno56
04-03-2025, 10:52 PM
» Replies: 3
» Views: 373
Pool - Cue Sports (Simple...
Forum: NaaLaa 7 Code
Last Post: johnno56
04-03-2025, 06:41 PM
» Replies: 3
» Views: 366
Nintendo Switch 2
Forum: Everything else
Last Post: johnno56
04-03-2025, 05:41 AM
» Replies: 2
» Views: 285
Pixel Editor
Forum: NaaLaa 7 Code
Last Post: kevin
03-31-2025, 06:52 PM
» Replies: 12
» Views: 1,120
Shell
Forum: NaaLaa 7 Questions
Last Post: johnno56
03-29-2025, 08:11 AM
» Replies: 3
» Views: 349
Rectangle (simple physics...
Forum: NaaLaa 7 Code
Last Post: johnno56
03-25-2025, 07:26 PM
» Replies: 3
» Views: 501
Some textures
Forum: Everything else
Last Post: 1micha.elok
03-23-2025, 10:24 AM
» Replies: 5
» Views: 639

 
  Scrolling Text
Posted by: johnno56 - 11-01-2024, 08:43 AM - Forum: Everything else - Replies (10)

Ok. Here is an "oldie" question.

If I were to create, not that I will mind you, an old text-based adventure game** using N7, is there a way to scroll the text up the screen when the game output goes beyond a "screen full"?

** Interactive Fiction... I think is the going genre for text adventures...

If this is too involved or difficult then it would be best to ignore the request... after letting me know of course... lol

Cheers

J

Print this item

  Naalaa origins
Posted by: johnno56 - 10-22-2024, 06:04 PM - Forum: Everything else - Replies (2)

Marcus,

Looking through my drives, for anything Naalaa, I came across a reference to N4... Then I got to thinking (stop laughing) as to when Naalaa was created?

When you get a spare moment, would it be possible, to briefly go through the history of Naalaa? If you can, could you also include authorized video interviews; media references and general folk-lore? A twenty minute video or a 235page PDF would be appreciated... Nah! Kidding! It does not have to be authorized... lol

Thanks.

J

Print this item

  Maze generation
Posted by: Marcus - 10-17-2024, 05:20 AM - Forum: NaaLaa 7 Code - Replies (17)

Here's some code to generate a maze (https://en.wikipedia.org/wiki/Maze_generation_algorithm):

Code:
set window "maze", 640, 480
set redraw off

randomize time()
maze = GenerateMaze(24, 24)

side = 16

set color 0, 0, 0
cls
for x = 0 to sizeof(maze) - 1
    for y = 0 to sizeof(maze[0]) - 1
        dx = x*side
        dy = y*side
        set color 255, 255, 255
        if not maze[x][y].l  draw line dx, dy, dx, dy + side - 1
        if not maze[x][y].r  draw line dx + side - 1, dy, dx + side - 1, dy + side - 1
        if not maze[x][y].u  draw line dx, dy, dx + side - 1, dy
        if not maze[x][y].d  draw line dx, dy + side - 1, dx + side - 1, dy + side - 1
    next
next

redraw
while not keydown(KEY_ESCAPE, true)  fwait 60

' GenerateMaze
' ------------
' Return an array of the size w*h, where every element has four fields, l, r, u and d, telling if
' there's a way left, right, up and down.
function GenerateMaze(w, h)
    maze = fill([vis: false, l: false, r: false, u: false, d: false], w, h)
    GenerateMazeRec(maze, rnd(sizeof(maze)), rnd(sizeof(maze[0])), 0)
    return maze
 
    function GenerateMazeRec(maze, x, y, dir)
        if x < 0 or x >= sizeof(maze) or y < 0 or y >= sizeof(maze[0])  return false
        if maze[x][y].vis  return false
        maze[x][y].vis = true
        if dir = 1
            maze[x][y].r = true
            maze[x + 1][y].l = true
        elseif dir = 2
            maze[x][y].l = true
            maze[x - 1][y].r = true
        elseif dir = 3
            maze[x][y].d = true
            maze[x][y + 1].u = true
        elseif dir = 4
            maze[x][y].u = true
            maze[x][y - 1].d = true
        endif
        visit = [1, 2, 3, 4]
        while sizeof(visit)
            index = rnd(sizeof(visit))
            if visit[index] = 1  GenerateMazeRec(maze, x - 1, y, 1)
            elseif visit[index] = 2  GenerateMazeRec(maze, x + 1, y, 2)
            elseif visit[index] = 3  GenerateMazeRec(maze, x, y - 1, 3)
            else  GenerateMazeRec(maze, x, y + 1, 4)
            free key visit, index
        wend
        return true
    endfunc
endfunc

I'll post some more code later, explaining how this can be used for creating a map for the wolf3d library.

Print this item

  slow down time
Posted by: aliensoldier - 09-28-2024, 01:45 PM - Forum: NaaLaa 7 Questions - Replies (5)

https://youtu.be/_MR_6p1_qzU

In this game there are moments where the action slows down, especially enemy shots and especially the shots of the final boss of each phase.

Thanks to this you can dodge enemy shots more easily, how could you program the game to slow down at specific moments?

Print this item

  Curious
Posted by: johnno56 - 09-08-2024, 05:38 AM - Forum: Everything else - Replies (12)

It has been very quiet of late. Just curious to know if everyone is still ok?

J

Print this item

  Convert String to Number
Posted by: 1micha.elok - 08-20-2024, 04:02 AM - Forum: NaaLaa 7 Questions - Replies (3)

Hi Marcus,

I'm making a tiny karaoke machine, but I can't find a function to convert string to number and to syncronize song and lyrics.
Could you please advise me ?

Code:
    'TOBE...synchronize lyrics and timestamps
    clearscreen()
    set caret 10,10
    for i = 1 to j-2      
       
        'time1 = left(lyrics[i],2) 'take the first two digits number of lyrics[i]
        'convert time1 from string to number
        'if 'real time' = time1 then display lyrics
                                       
        wln mid(lyrics[i],3,80)
        wait 3000 'this line should be removed if lyrics and timestamps are synchronized
    next

Herewith the full code 
Code:
'==================================================================================
'                               T.I.N.Y  K.A.R.A.O.K.E
'
' Songs :
' 1. Nathan Evans - Wellerman (Sea Shanty)
'    https://www.youtube.com/watch?v=bNQSMTNSnUw
'
' DISCLAIMER
'    It is not intended for commercial use and not for sale                      
'    No person or entity associated with this game received payment   
'    or anything of value, or entered into any agreement,             
'    in connection with any game assets used in this game.
'
'    All trademarks and game assets are the property of their respective owners. 
'    While every effort is made to acknowledge their works,
'    some of the game assets used in in this tiny game may not have
'    clear name of the artist/author/creator/developer to be referred with.
'    It may not include all relevant facts or the most up-to-date information.
'
'==================================================================================


'-----------------
' INITIALIZATION
'-----------------
set window "Karaoke",500,225,false,2

' color definition
visible black   = [0,0,0]
visible white   = [255,255,255]

' table to store lyrics line by line
lyrics = []


'-----------
' MAIN LOOP
'-----------
do
    clearscreen()

    'karaoke menu
    set caret 10,10
    wln "Karaoke"
    wln "* Choose music file (wav)"
    wln "* Choose lyric file (txt)"
    wln
    wln "Press SPACE to continue or ESC to quit"
    do
        if keydown(KEY_ESCAPE,true) then end
        wait 1
    until keydown(KEY_SPACE,true)
   
    'loop until filename is not blank
    do
        filemusic  = openfiledialog("wav")
        filelyrics = openfiledialog("txt")
    until not filemusic="" and not filelyrics=""

    'loop until ready
    loopready("Are you ready",14)

    'read lyrics from text file line by line
    f = openfile(filelyrics)
    j = 1
    do
        lyrics[j] = frln(f)
        j = j + 1
    until frln(f) = unset
    free file f

    'load and play music
    load music 1,filemusic
    play music 1

    'TOBE...synchronize lyrics and timestamps
    clearscreen()
    set caret 10,10
    for i = 1 to j-2      
       
        'time1 = left(lyrics[i],2) 'take the first two digits number of lyrics[i]
        'convert time1 from string to number
        'if 'real time' = time1 then display lyrics
                                       
        wln mid(lyrics[i],3,80)
        wait 3000 'this line should be removed if lyrics and timestamps are synchronized
    next

    'loop until ready
    loopready("Next Song ",14)
    free music 1
loop


'-----------
' FUNCTIONS
'-----------
function clearscreen()
    set color black;cls;set color white
endfunc

function loopready(message,lineNum)
    do
        'clear inside a defined rectangle
        set color black
        draw rect 10,lineNum*15,300,15,1
   
        'continue ?
        set color white
        set caret 10,lineNum*15
        write message+" (Y/N) ?"
        answer = rln()
        if upper(answer)="N" then end
    until upper(answer)="Y"
endfunc



Attached Files
.zip   Karaoke.zip (Size: 188.81 KB / Downloads: 4)
Print this item

  LowResJam
Posted by: Marcus - 07-31-2024, 08:58 PM - Forum: Programming - Replies (6)

Here's a game jam that seems kind of fun: https://itch.io/jam/lowrezjam-2024 . It starts tomorrow.

Print this item

  Neon Breath
Posted by: Marcus - 07-30-2024, 10:28 AM - Forum: NaaLaa 7 Code - Replies (11)

This is my submission for the Jam for All BASIC Dialects (#6) (https://itch.io/jam/jam-for-all-basic-dialects-6). There are only two levels, are they easy or hard? I just can't tell.

Edit It requires the latest version of n7 (released today) if you want to re-compile it.



Attached Files
.zip   neon_breath.zip (Size: 9.78 MB / Downloads: 16)
Print this item

  N7 version 24.07.30 released
Posted by: Marcus - 07-30-2024, 09:33 AM - Forum: Announcements - Replies (5)

Just some small fixes.

https://naalaa.com/n7/N7_240730.zip

2024-07-30

  • s3d: Fixed a bug in S3D_BlendMesh
  • s3d: Added the S3D_SetPerspectiveCorrection function
  • enginea: Fixed a bug that made the jump height of the EA_FpsPlayer object dependant on the frame rate
  • Fixed a bug (crash) in the enginea editor

Print this item

  Star Trek
Posted by: 1micha.elok - 07-23-2024, 11:14 AM - Forum: NaaLaa 7 Code - Replies (17)

       
click each image to zoom-in

================================
STAR TREK N7
simplified and modified version

Inspired by the 1970s Star Trek
by Mike Mayfield and Bob Leedom
================================

Code:
'Initial Message
set caret 10,20
set color black; cls;set color white
wln "     ______ _______ ______ ______   _______ ______  ______ __ __  "
wln "    / __  //__  __// __  // __  /  /__  __// __  / / ____// // /® "
wln "   / / /_/   / /  / /_/ // /_/ /     / /  / /_/ / / /__  / // /   "
wln "  __\ \     / /  / __  //   __/     / /  /   __/ / __ / /    /    "
wln " / /_/ /   / /  / / / // /\ \      / /  / /\ \  / /___ / /\ \     "
wln "/_____/   /_/  /_/ /_//_/  \_\    /_/  /_/  \_\/_____//_/  \_\    "
wln
wln " YOU ARE THE CAPTAIN OF THE STARSHIP ENTERPRISE"
wln " SEEK AND DESTROY THE KLINGONS"
wln " THEY ARE MENACING THE UNITED FEDERATIONS OF PLANETS"


Coming Soon !

Big Grin Big Grin Big Grin

Note :
   
Will Mr.Spock as Captain Kirk's second-in-command accept the Klingon's challenges ?

Print this item