Author Topic: The Newprog discussion thread  (Read 5451 times)

0 Members and 1 Guest are viewing this topic.

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
The Newprog discussion thread
« on: October 02, 2012, 01:26:09 pm »
I decided to make this thread so that I might know who, if there are any people, know the language.
Then we could talk and hopefully help each other with our problems.

Also if someone knows the creator of Newprog, or a working way to contact him, please share.(Since I've been looking for him :P)

If anyone's already interested, my current problem is that when I use the scroll commands, it shifts in monochrome and not the greyscale. ;)
« Last Edit: October 02, 2012, 01:26:40 pm by Stefan Bauwens »


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Newprog discussion thread
« Reply #1 on: October 02, 2012, 01:57:54 pm »
Hmm I never used the language but maybe someone could invite him here or something. It could be a bug since the language didn't have many updates (although I think it's supposed to be finished). Not a lot of people used it since 68K almost completely died since 2006.

Offline Eiyeron

  • Urist McEiyolobster
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1430
  • Rating: +130/-10
  • (-_(//));
    • View Profile
    • Rétro-Actif : Rétro/Prog/Blog
Re: The Newprog discussion thread
« Reply #2 on: October 02, 2012, 02:47:00 pm »
I know someone that used that language, but not for long :/

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Newprog discussion thread
« Reply #3 on: October 02, 2012, 02:55:12 pm »
If I remember, it was kinda like Axe Parser in style, but unlike Axe Parser, it required an extra launcher to run programs. In Axe you could choose any shell you want or none at all. The language had huge potential, though. I guess the 89 not being as popular anymore just never allowed it to take off like Axe did. (Actually back then the 83+ community was really quiet too, but not as bad as the 68K)

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: The Newprog discussion thread
« Reply #4 on: October 03, 2012, 08:54:46 am »
Great news(for me, at least :P).
I solved my problem, by looking  bit at an example program include with newprog.
For people who are interested are have the same problem I'll explain it here.
I was doing:
Code: [Select]
if up()
light()
bscroll(100)
dark()
bscroll(100)
...
endif
if right()
light()
lscroll(160)
dark()
lscroll(160)
...
endif
Instead of using 160 when scrolling horizontally, I should have used 100 as well. This also used to cause some crashes, so it's good to know.
Also, I was using savescr(),loadscr() and clrlcd() when drawing from my map(after I had shifted the screen). I took this away, and just changed the drawing mode when doing so.
Code: [Select]
Gmode(gor)
^Use when shifting the screen
Code: [Select]
Gmode(greface)
^Use when drawing new tiles.

So, if you have the same problem, this should have fixed it. :D


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: The Newprog discussion thread
« Reply #5 on: October 08, 2012, 12:38:52 pm »
Just out of curiosity, can you utilize the full screen space with Newprog? That was always something that bothered me about TI-89 BASIC.

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: The Newprog discussion thread
« Reply #6 on: October 09, 2012, 04:01:40 am »
You mean, use the whole, whole screen? Ofcourse you can! You can eventually look at a screenie of Pop 89 or any other newprog program on Ticalc.org to see it.
Edit:
I tried my program on tiemu and on vti and both show a blank screen upon running. Does anyone know why. Could greyscale be a problem?(It works fine on my real ti-89)
Edit2:Mvm, I forgot to send some other vars to tiemu. xD
« Last Edit: October 09, 2012, 08:38:24 am by Stefan Bauwens »


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: The Newprog discussion thread
« Reply #7 on: October 10, 2012, 08:43:55 am »
Ahh, that's good then. ^^

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: The Newprog discussion thread
« Reply #8 on: October 16, 2012, 06:07:11 am »
Okay, I have a question. It's more of a general question that I believe non-newprog users can answer and I didn't want to make a new topic just for it.
Is it okay to use pixeltest(gpix in my case) for collision detection? I always try to avoid pixeltests as much as I can since I get "Crappy programmer"-feelings with it. :P
I am using smoothscrolling and my x gets added/subtracted by one by every 16 pixels I move.
When I jump up and move to the right(for example) and try to jump on a block I fall trough it since I moved less than 16 pixels so my current collision detection check for a block before the block I'm trying to jump on, and since on that spot there is no I fall trough.
It's a bit complicated to explain, but people who used collision detection before hopefully understand.

Thanks in advance.


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline TIfanx1999

  • ಠ_ಠ ( ͡° ͜ʖ ͡°)
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 6173
  • Rating: +191/-9
    • View Profile
Re: The Newprog discussion thread
« Reply #9 on: October 16, 2012, 06:25:24 am »
I don't know about newprog, but IIRC in 83+ BASIC pixel test is the fastest(or one of the fastest) ways to do collision detection.

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: The Newprog discussion thread
« Reply #10 on: October 17, 2012, 12:01:33 pm »
Okay, thanks. I think Newprog's gpix() is pretty fast so I'll use that. :)


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: The Newprog discussion thread
« Reply #11 on: October 17, 2012, 06:57:16 pm »
Does the language has severe memory limitations like MLC had on the 86 btw? In that language you could only use one array/list, for example, so if you were making an RPG you could only have one map (with possibly 8-9 rooms in it) and the entire game couldn't be more than 8 KB in size.

Offline Lionel Debroux

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2135
  • Rating: +290/-45
    • View Profile
    • TI-Chess Team
Re: The Newprog discussion thread
« Reply #12 on: October 18, 2012, 01:30:28 am »
AFAICT, nope.
Member of the TI-Chess Team.
Co-maintainer of GCC4TI (GCC4TI online documentation), TILP and TIEmu.
Co-admin of TI-Planet.

Offline chickendude

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 817
  • Rating: +90/-1
  • Pro-Riot Squad
    • View Profile
Re: The Newprog discussion thread
« Reply #13 on: October 18, 2012, 03:58:04 am »
For collision detection, assuming all of your tiles are square and there aren't any irregular shapes in the collision area of your tiles, what i generally do is something like this. If you are going up, add the y velocity to the current y position and check what tile is in that new y position. If it is passable, save the new y position. If it isn't passable, you need to save (old y position % F8h): essentially, remove the y offset so that it is aligned to the tile. When checking collisions below you, you'll need to add 2 (if your coordinates are stored in multiples of 8) or 16 (if they're stored in pixels) to the y position before checking, since you need to check the position below the player. If it isn't passable, then just remove the y offset from the new coordinates and store that. If you're only going to be moving 1 pixel at a time, it can be simplified a little since you won't need to worry about aligning the player to the next tile (they will already be aligned). You can also limit your checks to every 16 pixels, but i like to do it every frame since it makes it easier for example to test if you are standing in lava and need to do damage to the player, etc.

*Edit AOC* in order to prevent 8) from turning into a smiley emoticon, check the "Don't use smileys" box when posting.
« Last Edit: October 18, 2012, 09:13:59 am by Art_of_camelot »

Offline Stefan Bauwens

  • Creator of Myst 89 - סטיבן
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1799
  • Rating: +162/-24
  • 68k programmer
    • View Profile
    • Portfolio
Re: The Newprog discussion thread
« Reply #14 on: October 18, 2012, 08:39:03 am »
Thanks Chickendude, but it looks like gpix(pixeltest) will do the trick as well for now. I'll see later perhaps if I implement physics and checks.


Very proud Ticalc.org POTY winner (2011 68k) with Myst 89!
Very proud TI-Planet.org DBZ winner(2013)

Interview with me