Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Moru

Pages: [1] 2 3 ... 6
1
Off Topic / LEd - Tilemap Editor
« on: 2020-Sep-26 »
Looks promising, has auto-tiling like rpg-maker and is open source.

https://deepnight.net/tools/led-2d-level-editor/

2
Bug Reports / Please create first. (solved)
« on: 2019-Oct-28 »
Just in case someone has this problem again.

My daughter wanted to play around with GLBasic and created a project. She is of the younger generation that never had problems with native characters in filenames (åäö for example). We spent a few minutes searching errors and testing old projects before I saw what the name of the project was :-)

So, if you get this error message:

---------------------------
Please create first.
---------------------------
OK   
---------------------------

Make sure that your project name does not contain any funny characters. For safety reasons stay with A-Z,.-_ and numbers. :-)

3
Off Topic / Shaders
« on: 2019-May-13 »
Would this be useful as a basis for learning shaders to use in GLBasic?

https://news.ycombinator.com/item?id=19895218

4
Off Topic / Discord - Multiplayer join games
« on: 2017-Nov-11 »
Discord seems to have some way to integrate games with game lobby functionality now. Mabe worth a look for multiplayer games too?

https://discordapp.com/rich-presence

Quote
Rich Presence allows you to leverage the totally overhauled "Now Playing" section in a Discord user's profile to help people play your game together. Rich game data—including duration, score, current boss or map, and so much more—lives inside Discord. You can spectate a friend's game directly from their profile popout, or party up via beautiful chat embeds with real-time information about open party slots and the party's in-game status. No more exchanging usernames and friend codes, or wondering if there's room for you to join. Rich Presence is a living invitation to play together, or to watch your friends kick butt.

6
Another bad vulnerability, check your linux-derivative devices, bug precent for 20 years...

http://soylentnews.org/article.pl?sid=14/09/25/0010205

Now the period comes that everyone was saying 20 years ago. Linux is only secure because not enough users to make it worthwhile to hack it. Now since every phone, server and router is running it, it's a very nice target.

7
Something to be aware of. Make sure your users don't get upset with you or your games :-)

http://soylentnews.org/article.pl?sid=14/09/19/133213

8
GLBasic - en / ENCRYPT$ output binary data?
« on: 2013-Nov-21 »
Can ENCRYPT$ be made to return binary data instead of a string encoded as hexadecimal?
Can DECRYPT$ be made to accept this binary string data too?

If I'm not totally mistaken, this would lower the storage/transfer space by 50%.
Sure I can convert the hexadecimal string back to binary but this takes time and for a network application on a slow computer I would like to stay away from this :-)

9
GLBasic - en / Pandora - compile
« on: 2012-Dec-11 »
Guess what? I just got my Pandora! And now I want to get something running from GLBasic. I could use some tutorial for dummies I guess. So far I have managed to compile into .pnd file format. First compile seems to always create a .pnd file that contains a PXML.xml-file that contains no data (0 size). Second compile usually manages to get the PXML.xml-file unharmed. On transfer to Pandora the file still does not show up even though I put it in /pandora/desktop/.

Only once I managed to get it to show up with the GLBasic logo as icon on desktop but I can't recreate this. And besides, it still didn't launch. None of the above files launch even if I search them out in the file explorer and start them from there. I see no logfiles in /tmp/ where they usually show up after launching a pnd file.

Any ideas/help is appreciated! :-)

10
Off Topic / Another kickstarter: Elite
« on: 2012-Nov-07 »

12
GLBasic - en / Best Android for GLBasic?
« on: 2011-Nov-27 »
There can be too much to choose from. What is the best Android regarding compatibility with GLBasic? 2D/3D?

13
I'm having troubles using long URL´s. When I get close to 1024 I sometimes get  "*** Unhandled exception ***" in the debug window.

This code always leads to this at output-line 950:

Code: (glbasic) [Select]
// --------------------------------- //
// Project: netwebget_url_length
// Start: Sunday, November 20, 2011
// IDE Version: 10.159


// SETCURRENTDIR("Media") // go to media files

LOCAL start = 910
LOCAL url$ = "/highscores/index.php/data/put/"
LOCAL ok$

FOR n = 0 TO start
url$ = url$+"A"
NEXT

FOR n = start TO 1024
url$ = url$ + "a"
DEBUG LEN(url$)
ok$ = NETWEBGET$("gamecorner.110mb.com", url$, 80, 5000)
DEBUG " Result: " + ok$ + "\n"
SHOWSCREEN
NEXT


My computer runs Windows XP 32 bit.

14
http://www.riotdigital.com/ttcc2011/

Quote
This is a coding competition for Caanoo, Wiz, Pandora and Dingoo's Dingux developers. With this competition we hope to generate more awesome homebrew games for our favorite consoles and our beloved communities. We hope you join and help us bring these communities together in ways never before seen.
 This competition is in the spirit of community. As such, you are required to join up with one of your fellow developers / artist / coder / sound / composer / game-designer / magician etc. to create something as a team. We hope this will result in a lot of "artist/coder needed for my awesome idea" threads on the boards and people will help each other out. Remember, you can submit several entries, so your talent could be shared between teams as well.

15
Bug Reports / SPLITSTR and NULL \0
« on: 2011-Mar-26 »
I'm having troubles splitting strings on NULL, CHR$(0). I always end up with only the first part of the string.

Code: (glbasic) [Select]
LOCAL a$, count, array$[]

a$ = "one"+CHR$(0)+"two"+CHR$(0)+"three"

count = SPLITSTR(a$, array$[], CHR$(0), FALSE)

DEBUG "fields: " + count + "\n"

FOREACH b$ IN array$[]
DEBUG " ["+b$ + "]\n"
NEXT

END

Result:
fields: 1
 [one]

Expected:
fields: 3
 [one]
 [two]
 [three]


Pages: [1] 2 3 ... 6