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.


Messages - Munchor

Pages: 1 ... 295 296 [297] 298 299 ... 424
4441
TI Z80 / Re: Tokens
« on: December 22, 2010, 06:03:39 am »
I reread the first text about #define and read the second one too. Hum... I can see a lot of use for that in Axe :)

4442
Computer Projects and Ideas / Re: JavaTyper - a text editor in Java
« on: December 22, 2010, 06:02:07 am »
Yes, it opens .exe's too, but it displays the crazy code :) .txt's work perfectly, though :)

4443
Computer Projects and Ideas / Re: JavaTyper - a text editor in Java
« on: December 21, 2010, 08:00:00 pm »
Nice. The only suggestion I would have though is to make the text larger, or maybe add an option menu to increase the size.

What text format does it support? Does it also support unicode?

It supporst most ASCII symbols like the STO arrow :) UNICODE I don't really know what that is :S

I am including a colour/text format option in a near future :)

It supports Unicode. Java supports Unicode and i'm assuming you're using a JTextArea, so the text editor does support unicode.

I am using TextArea so it does support unicode :D

4444
Correlation / Re: Request for a Java Programmer
« on: December 21, 2010, 07:59:39 pm »
@DeepThought The 3 things you mentioned as "a couple of problems" are absolutely fine.  Please don't try to fix them.  And thanks!

@ScoutDavid If you are able to make a GUI, that would be awesome.  Feel free to look here for a suggested GUI. http://ourl.ca/7900/141527

EDIT: I couldn't see the .java file.  It was there for a moment, then it was gone

Looking at Deep's code it doesn't look very hard, but only tomorrow, sorry :S

4445
News / Re: DJ Omnimaga resigns from Omnimaga manager
« on: December 21, 2010, 07:58:33 pm »
The reasons you give to doing so are fair and I totally understand them. You have good arguments to proof your point.

However, I can't conceive seeing you as normal member for some reason, you are able to handle a huge community and believe me, the best ti calculators community in the web. You are one of the very few who can do it, so you are the best admnistrator we could have since you are also the founder.

Sorry DJ, I would like to see you turning back your decision :)

4446
Correlation / Re: Request for a Java Programmer
« on: December 21, 2010, 07:49:47 pm »
Deep Thought: Are you releasing the source? I'd like to give it a try and make it GUI :)

4447
TI Z80 / Re: Athena: Calculator project installer
« on: December 21, 2010, 07:45:31 pm »
The Z80 Athena seems to be mostly done now. The only thing that doesn't really work is the "Repair" command, but then again, you can always uninstall and re-install to achieve the same effect.

The PC Athena still needs to get some group support, but once that's done, I'll be releasing Athena for testing. It shouldn't be much longer now.

That reminds me of Window's uninstalling/reparing programs program. What about program compatibility? Any program(s) that don't work? Or all of them do?

4448
Computer Projects and Ideas / Re: JavaTyper - a text editor in Java
« on: December 21, 2010, 07:44:01 pm »
Nice. The only suggestion I would have though is to make the text larger, or maybe add an option menu to increase the size.

What text format does it support? Does it also support unicode?

It supporst most ASCII symbols like the STO arrow :) UNICODE I don't really know what that is :S

I am including a colour/text format option in a near future :)

4449
TI Z80 / Re: uPong
« on: December 21, 2010, 07:21:43 pm »
Code: [Select]
.UPONG

"<easy>"->Str4

"SCORE:"->Str2
[6363636363633F1F]->Pic3
[FCFEC6C6FEFCC0C0C0]->Pic4
[3C7EE7C3C3E77E3C]->Pic5
[00CEDFF3E3C3C3C3]->Pic6
[3F7FC3C37F3F037FFE]->Pic7
[FF00000000000000]->Pic8
[1F2868A76A2A271F]->Pic9
[F81416E55654E4F8]->Pic0

DiagnosticOff
Lbl 1
ClrDraw
ClrHome
Fix 5
.Code for image
Pt-On(25,10,Pic3   
Pt-On(34,9,Pic4   
Pt-On(34,10,Pic4+1
Pt-On(42,10,Pic5   
Pt-On(51,10,Pic6   
Pt-On(60,9,Pic7   
Pt-On(60,10,Pic7+1

Pt-On(0,19,Pic8
Pt-On(8,19,Pic8
Pt-On(16,19,Pic8
Pt-On(24,19,Pic8
Pt-On(32,19,Pic8
Pt-On(40,19,Pic8
Pt-On(48,19,Pic8
Pt-On(56,19,Pic8
Pt-On(64,19,Pic8
Pt-On(72,19,Pic8
Pt-On(80,19,Pic8
Pt-On(88,19,Pic8
Pt-On(96,19,Pic8


Text(32,21,"2nd:play

If sub(CS,"<easy>",Str4)
Text(35,28,Str4
Else
Text(34,28,Str4
End

Text(29,35,"clear:quit

"|vPongHS"->Str5
GetCalc(Str5)->H
!If H
UnArchive Str5
GetCalc(Str5)->H
End
!If H
GetCalc(Str5,8)->H
End

If sub(CS,"<easy>",Str4)
If {H}>9
Text(25,42,"Highscore:",{H}>Dec
Else
Text(27,42,"Highscore:",{H}>Dec
End
Else
If {H+1}>9
Text(25,42,"Highscore:",{H+1}>Dec
Else
Text(27,42,"Highscore:",{H+1}>Dec
End
End



Fix 3
Text(0,49,"             made by: David G.                           
Text(0,55,"                                           Kevin H.                                       
Fix 2

DispGraph



Repeat getKey->theta
End

If getKey(3) or getKey(19)
104->{Str4+1}
114->{Str4+3}
100->{Str4+4}
End

If getKey(2) or getKey(35)
101->{Str4+1}
115->{Str4+3}
121->{Str4+4}
End

If theta=28
1->G
End

If theta=15
Fix 4
ClrHome
ClrDraw
Return
End

.THIS IS THE START OF THE GAME CODE
If theta=54
ClrDraw
0->S-1->D
44->Z*256->X
10->Y
sub(HT)

Repeat getKey(15)

If sub(CS,"<hard>",Str4)
4->M
Else
2->M
End

.MOVE LEFT CODE
If getKey(2) or getKey(35) and (Z!=0
Z-M->Z
End

.MOVE RIGHT CODE
If getKey(3) or getKey(19) and (Z!=88
Z+M->Z
End

.RANDOM POSITION FOR BALL
X+V->X
Y+D->Y

.LOSING CODE
If Y>70
Goto D
End

.RANDOM POSITION FOR BALL WHEN HIT UPPER BARRIER
If Y=0
sub(HT)
End

.HIT IMAGE CODE
If Y=54 and (abs(X/256-Z)<8
sub(HT)
S+1->S
End
If X/256=0 or (X/256=88
~V->V+X->X
End



ClrDraw
[000000000000FFFF]->Pic1
[0000182C3C180000]->Pic2
If sub(CS,"<easy>",Str4
Line(0,0,96,0)
Line(0,0,0,64)
Line(95,0,95,63)
Line(0,63,95,63)
End
Pt-On(Z,54,Pic1
If G=1
Pt-On(X/256,Y,Pic9
Pt-On(X/256+8,Y,Pic0
Else
Pt-On(X/256,Y,Pic2
End
DispGraph

End

.LOSE LABEL
Lbl D
ClrDraw
ClrHome
Fix 5
.Code for image
Pt-On(25,25,Pic3   
Pt-On(34,24,Pic4   
Pt-On(34,25,Pic4+1
Pt-On(42,25,Pic5   
Pt-On(51,25,Pic6   
Pt-On(60,24,Pic7   
Pt-On(60,25,Pic7+1

Pt-On(0,35,Pic8
Pt-On(8,35,Pic8
Pt-On(16,35,Pic8
Pt-On(24,35,Pic8
Pt-On(32,35,Pic8
Pt-On(40,35,Pic8
Pt-On(48,35,Pic8
Pt-On(56,35,Pic8
Pt-On(64,35,Pic8
Pt-On(72,35,Pic8
Pt-On(80,35,Pic8
Pt-On(88,35,Pic8
Pt-On(96,35,Pic8

If G=1
Pt-On(40,48,Pic9
Pt-On(48,48,Pic0
End

If S>9
Text(33,38,Str2,S>Dec
Else
Text(35,38,Str2,S>Dec
End

If sub(CS,Str4,"<easy>")
S->{H}
Else
S->{H+1}
End

DispGraph

Pause 1500
Repeat getKey->U
End
Goto 1




.ROUTINES
Return
Lbl CS
0->r3
Repeat {r2+r3}->r4 != {r1+r3} or ({r1+r3}->r5 = 0) or (r4 = 0)
::r3+1->r3
End
If r4 or r5=0
::1
::Return
End
0
Return

Lbl HT
rand^512-256->V
~D->D

Else
Goto 1
End

Source Code is here.

multiple balls at once is really easy to make! Gotta work on that.

4450
TI Z80 / Re: [Project] 2 Player shooter game.
« on: December 21, 2010, 07:18:13 pm »


Looks great! You can move like in Snake games, through the screen! The linking looks fast too!

4451
TI Z80 / Re: Tokens
« on: December 21, 2010, 07:14:52 pm »
I didn't really understand the define thing :S

However, nice to see you're working on this. Is there a Ctrl+F, I mean a Find/Substitute option already? I'd love to see one!

4452
TI Z80 / Re: uPong
« on: December 21, 2010, 07:08:07 pm »
Quote
[16:48:48] <@DJ_Omni> Scout you complain about people checking your source code, yet you release other people program adding yourself as co-author, without adding any single noticeable new thing but a menu

I can't take this off my head... I am quite sure I added way more stuff than a menu (both in uPong and Racer3D: Replay).

I just made a new version! Added a pig mode where the ball is substituded by a pig face and changed the "made by" in the title screen :)

Screenshots:


The pig mode is activated by pressing 8. The collision doesn't work so well in this mode :(


4453
TI Z80 / Re: [PROJECT] Racer3D: Replay
« on: December 21, 2010, 06:07:40 pm »

4454
Computer Projects and Ideas / JavaTyper - a text editor in Java
« on: December 21, 2010, 05:49:02 pm »
Yes, there are better text editors.

Yes, this one is good but when compared to most of the existing ones, it sucks.

Yes, it is good because I made it.

Yes, you should try it.

Yes, most of the code is mine, but I found a few things on the web.

No, it is not open-source.

Yes, it is good-looking.

Yes, it has Save/Open capabilities.

Yes, I will be uploading it.

Yes, you have lost the game.

Yes, it allows indentation with the TAB key.

Yes, it is an executable .jar file.

Yes, I am uploading it.

Yes, for the time being it is not a very good program.

Yes, it will be one day, hopefully.

Yes, the file is not large and the program is fast, but not super-fast.

4455
Site Feedback and Questions / Re: Keyword not working
« on: December 21, 2010, 05:05:11 pm »
Weird, I think this migth be a bug with the download system mod. Wasn't there another topic about this by the way?

Yes, I made it, but it was fixed (at the time...)

Pages: 1 ... 295 296 [297] 298 299 ... 424