2020-03-26 19:52:30

Just like it says. Anybody have it? Or just a set of plane HTML pages so I can use chrome translation or something, the HDL kinda makes that hard. NVDA translate is fucking up the syntax in HDL and is really slow because it translates on navigation, and the HDL is just a pane to navigate anyway because the back button doesn't work...

----------
An anomaly in the matrix. An error in existence. A being who cannot get inside the goddamn box! A.K.A. Me.

2020-03-27 04:44:21

Yeah, I was kinda wondering that as well. does anyone know where to find this? I would like to try out HSP.

My chiptune archive is https://chiparchive.com/files/.
And the new sync key is
BQHTXTVRWGMFSI3BI3ZVQ4TGEOGNJJO64
Twitter is https://twitter.com/thechiptunearc1?lang=en

2020-03-27 15:34:39

interested on that 2

And as anyone who's gone mountain climbing knows ,The serene snow-covered peaks that look so tranquil from a bdistance, Are the deadliest
sound is my vision
i rarely check my private messages on the forum, so if you want to contact me please use my email, or dm me  at oussama40121 on tw

2020-03-30 02:34:26

what is hsp?

I am a divine being. I can be called a primordial deity, but that might be pushing it, a smidge. I am the only one of my kind to have ten tails, with others having nine. I don't mean to sound arrogant, but I have ascended my own race.

2020-03-30 02:39:45

HSP, my friend, is a language called hot soop prosesser. Have you ever played BK3 and you saw something like hspec.dll and hspinit.dll? yeah, that's HSP! it's easy and flexable to write in only problem is that there's lac of english manual.

My chiptune archive is https://chiparchive.com/files/.
And the new sync key is
BQHTXTVRWGMFSI3BI3ZVQ4TGEOGNJJO64
Twitter is https://twitter.com/thechiptunearc1?lang=en

2020-03-30 04:55:26

aha. so, what can you do with it?

I am a divine being. I can be called a primordial deity, but that might be pushing it, a smidge. I am the only one of my kind to have ten tails, with others having nine. I don't mean to sound arrogant, but I have ascended my own race.

2020-03-30 06:28:39

You can make game and aplications for windows, androin, steam, and I think macintosh.

My chiptune archive is https://chiparchive.com/files/.
And the new sync key is
BQHTXTVRWGMFSI3BI3ZVQ4TGEOGNJJO64
Twitter is https://twitter.com/thechiptunearc1?lang=en

2020-03-30 08:02:41

oo! interesting! so, its not in english then? can't wait tille it is! it sounds cool.

I am a divine being. I can be called a primordial deity, but that might be pushing it, a smidge. I am the only one of my kind to have ten tails, with others having nine. I don't mean to sound arrogant, but I have ascended my own race.

2020-03-30 09:16:43 (edited by ambro86 2020-03-30 10:10:57)

Hi, since it is a Japanese programming language, not much documentation is found. In any case, I will do my best to report documents from which to start. The last link is the official guide of HSP, which however is in Japanese, and is translated with google translate. However, this official guide only covers the basics, so I put it last.

https://hsp3.web.fc2.com/en/
http://lhsp.s206.xrea.com/index.en.html
https://translate.google.com/translate? … nroll.html

An example that uses nursery rhyme 99 bottles of beer

    for i,99,0,-1
    mes ""+i+"Bottle(s) of beer on the wall,"+i+"bottle(s) of beer."
    mes "Take one down and pass it around,"
    j=i-1
    mes ""+j+"bottle(s) of beer on the wall."
    next
    stop

2020-03-30 16:13:00

The example above is inaccessible.
accessible version:
sdim ret,30000
for i,99,0,-1
ret+=""+i+" Bottle(s) of beer on the wall, "+i+" bottle(s) of beer.\n"
ret+="You take one down\n"
j=i-1
ret+=""+j+" bottle(s) of beer on the wall.\n"
next

screen 0,1200,800
pos 0,0
objsize 600
listbox n,750,ret
objsel stat
stop

I don't speak as good as I write, and I don't listen as good as I speak.

2020-03-30 18:34:55

Hi Nyanchan, thanks for the information.
I'd like to ask you this. You who know Hsp very well, what are the pros and cons? For those who want to make an audiogame would you recommend Python or Hsp? Now with nvda Translate it is no longer a problem to use a program in Japanese, because with these add-ons it translates everything into the desired language. Is there a documentation that explains how to program an audiogame, with the management of text to speech, audio, etc.? Even if it were in Japanese it wouldn't be a problem.
Thanks.

2020-03-31 14:04:44 (edited by nyanchan 2020-03-31 14:07:28)

I won't recommend it.
It's very good to sketch small apps or make some personal tasks easier.
1) Window handling is automatic and placing objects is the easiest as far as I know. (Positioning isn't auto)
2) Many libraries are built-in.
3) Calling dll functions is much easier than Python.
4) one-touch exe conversion.
But it's only applicable when the user has full access to Japanese resources without having to spend extra time understanding them. Trying HSP with translation, directionless experiments or any other extra task is simply a waste of time in my humble opinion, especially if the following disadvantages considered.
1) It's slower than Python.
2) It doesn't have proper local variable support.
3) Its OOP support is almost nonexistent.
4) It doesn't support dll callbacks.
5) It doesn't provide struct support, meaning that we have to manually construct them.
6) It doesn't have reliable dynamic array.
7) Dictionary type is not supported.
8) It has implicit type conversion rules and they're really hard and annoying.
9) It's still impossible to develop accessible products on other platforms.
10) some built-in libraries do not have required specs for audio game development E.G. socket.
11) It doesn't teach you usable programming knowledge for your future career (applicable when you're trying to be a professional engineer / programmer).

I don't speak as good as I write, and I don't listen as good as I speak.