Omnimaga

Calculator Community => Other Calc-Related Projects and Ideas => Topic started by: elfprince13 on April 26, 2006, 01:33:00 pm

Title: my tutorials.
Post by: elfprince13 on April 26, 2006, 01:33:00 pm
The only one that is currently completed is my No-lib Maps/Sprites Guide.


What Im working on once I finish Frog RPG
Title: my tutorials.
Post by: DJ Omnimaga on April 26, 2006, 01:57:00 pm
wow nice, I am curious about them, I want to learn how to make graphics like in Kerm CS1 game ^^ (maybe faster tho)
Title: my tutorials.
Post by: Radical Pi on April 26, 2006, 02:06:00 pm
CDI has a scrolling tut, but another one can only help. :)smile.gif
And vector grafix would be a major help in rpgs...
Title: my tutorials.
Post by: kalan_vod on April 26, 2006, 02:20:00 pm
Great addition to the team EP, I hope to see these tuts soon.
Title: my tutorials.
Post by: Liazon on April 26, 2006, 02:34:00 pm
QuoteBegin-elfprince13+Apr 26 2006, 07:33 PM-->
QUOTE (elfprince13 @ Apr 26 2006, 07:33 PM)
The only one that is currently completed is my No-lib Maps/Sprites Guide.


What Im working on once I finish Frog RPG
  • Scrolling in Basic
  • Isometricity and TI-Basic
  • Vector Graphics in TI-Basic

 This logic behind those techniques are helpful to any programmer really.  That's really nice.
Title: my tutorials.
Post by: elfprince13 on April 26, 2006, 03:48:00 pm
its odd on the vector graphics. Ive been experimenting with them, and its pretty cool, but in some ways it feels like backsliding. I used to use the point/line commands in almost all my games. Then I moved on the ascii graphics/text sprites/stat sprites. Now Im slowing moving back to using Line() as i discover how powerful it can be.
Title: my tutorials.
Post by: kalan_vod on April 26, 2006, 04:02:00 pm
QuoteBegin-elfprince13+Apr 26 2006, 09:48 PM-->
QUOTE (elfprince13 @ Apr 26 2006, 09:48 PM)
its odd on the vector graphics. Ive been experimenting with them, and its pretty cool, but in some ways it feels like backsliding. I used to use the point/line commands in almost all my games. Then I moved on the ascii graphics/text sprites/stat sprites. Now Im slowing moving back to using Line() as i discover how powerful it can be.  

 And faster. I am interested in knowing more about vectors as well.
Title: my tutorials.
Post by: elfprince13 on April 26, 2006, 04:15:00 pm
you know what vector graphics are right? as opposed to rasterised graphics....


anyway for the most part, Basic drawing is a crappy combination of the 2....

however what you can do to simulate vector graphics (like in Flash animations) is to have a series of  Line() connected nodes (stored in a list or using a string and expr() depending on how much space you need). Then, you can move the nodes around, and use the same Line() commands to draw different stuff.
Title: my tutorials.
Post by: DJ Omnimaga on April 27, 2006, 01:31:00 am
Didnt photoshop had vector graphic tools? I remember messing around with them
Title: my tutorials.
Post by: elfprince13 on April 27, 2006, 03:37:00 am
QuoteBegin-xlibman+Apr 27 2006, 07:31 AM-->
QUOTE (xlibman @ Apr 27 2006, 07:31 AM)
Didnt photoshop had vector graphic tools? I remember messing around with them  

 I know what you're talking about, but I think its a different meaning for it.


Im talking vector graphics like SVG or Flash.
Title: my tutorials.
Post by: kalan_vod on April 27, 2006, 03:58:00 am
QuoteBegin-xlibman+Apr 27 2006, 07:31 AM-->
QUOTE (xlibman @ Apr 27 2006, 07:31 AM)
Didnt photoshop had vector graphic tools? I remember messing around with them  

 That was illustrator, which uses math to draw instead of doing as PS. It's made by the same comp. (adobe).

EP:I never really messed with vectors on a calc...that's why I am interested in learning more about them.
Title: my tutorials.
Post by: elfprince13 on April 27, 2006, 04:25:00 am
all in good time my friend  ;)wink.gif

as in, once I finish Frog RPG
Title: my tutorials.
Post by: Zeromus on April 27, 2006, 09:21:00 am
QuoteBegin-elfprince13+Apr 26 2006, 07:33 PM-->
QUOTE (elfprince13 @ Apr 26 2006, 07:33 PM)
  • Scrolling in Basic

 CDI has another one done too, this one works with huge strings... :D

Can I see yours (I'm curious as to HOW you do it)
Title: my tutorials.
Post by: kalan_vod on April 27, 2006, 10:12:00 am
I think he means the scrolling like in frog RPG, on the graphscreen.
Title: my tutorials.
Post by: elfprince13 on April 27, 2006, 11:14:00 am
both. my sidescroller use *big* strings.

Frog RPG does something a little different.

my Quest demo uses a statplot
Title: my tutorials.
Post by: Zeromus on April 27, 2006, 11:33:00 am
*big* as in how big? :Ptongue.gif I know after ~4000 chars it slows down ALOT
Title: my tutorials.
Post by: Radical Pi on April 27, 2006, 11:39:00 am
length(Str1)=1024 is the largest I've worked with on a daily basis.

Then there are those 805 element lists I used in a scrolling plot maze...
Title: my tutorials.
Post by: Zeromus on April 27, 2006, 11:57:00 am
:Ptongue.gif 999 largest list and 4200 largest string
Title: my tutorials.
Post by: elfprince13 on April 27, 2006, 12:16:00 pm
depends on the size of the map......
Title: my tutorials.
Post by: Radical Pi on April 27, 2006, 12:27:00 pm
I got a string to around 6430 once. Mixing memory-heavy lowercase letters throws it off.
Title: my tutorials.
Post by: kalan_vod on April 27, 2006, 01:33:00 pm
I have used 1000 chars as the most....It slows down pretty quick..
Title: my tutorials.
Post by: elfprince13 on December 14, 2006, 01:22:00 pm
'ello chaps, long time since Ive done anything on this. Ive layed out my plan for future tutorials and started the first one (it is NOT done yet, haven't even started on the tutorial part yet, right now its just a refresher on the pros cons of the different data structures available from, TI-OS, it will grow, if not tonight, tomorrow. I hope to do several of these a week until they are done.) http://rancidmoose.unitedti.org/basicadvancedconcepts
Title: my tutorials.
Post by: DJ Omnimaga on December 14, 2006, 01:59:00 pm
omg nice, I am glad you are picking this up again ;)wink.gif, i hope you finish them because this is starting to look great