+Lee Stewart #26 Posted June 5 I let it run overnight, appears there may have been some excess generosity with the payout levels set..... It is disturbing how mind-numbingly entertaining it is just to watch it - and even weirder the undeserved feeling of satisfaction/accomplishment when four of a kind spin up. It is, indeed! I finally quit my instance of the game at ...lee 1 Quote Share this post Link to post Share on other sites
+FarmerPotato #27 Posted June 7 Looks like we have enough interest to launch the competition . Official rules here: http://atariage.com/forums/topic/291836-official-10-liner-program-competition-thread/ Thanks for starting this! It has been a lot of fun. 2 Quote Share this post Link to post Share on other sites
+Vorticon #28 Posted June 14 Looking great so far with lots of entries Still a month and a half to go, so plenty of time for some more! 1 Quote Share this post Link to post Share on other sites
+Vorticon #29 Posted July 5 A little over 3 weeks to go folks before the end of the contest. We have some very interesting entries so far! 1 Quote Share this post Link to post Share on other sites
unhuman #30 Posted July 6 Finally getting around to this... Something wrong with line 100. Quote Share this post Link to post Share on other sites
+Vorticon #31 Posted July 15 15 days to go folks! Plenty of time to come up with an entry Quote Share this post Link to post Share on other sites
senior_falcon #32 Posted July 22 I am working on an interesting program. Right now there are 7 lines. It will be close - I hope the remaining code will fit into the final 3 lines. Should know in the next couple of days. "Programs should be submitted as a disk image for ease of access by all." Can I upload a disk image from Win994a? Other than that I have no idea how a disk image is made. 2 Quote Share this post Link to post Share on other sites
RickyDean #33 Posted July 22 2 hours ago, senior_falcon said: I am working on an interesting program. Right now there are 7 lines. It will be close - I hope the remaining code will fit into the final 3 lines. Should know in the next couple of days. "Programs should be submitted as a disk image for ease of access by all." Can I upload a disk image from Win994a? Other than that I have no idea how a disk image is made. I believe that would be fine, I think a Win99 disk image just needs the extension name changed from Tidsk to dsk and is the same as a V9T9 image then. Quote Share this post Link to post Share on other sites
+Vorticon #34 Posted July 22 Otherwise just post a listing and I'll convert it to a dsk image. Quote Share this post Link to post Share on other sites
Bones-69 #35 Posted July 23 On 7/22/2019 at 11:43 PM, senior_falcon said: "Programs should be submitted as a disk image for ease of access by all." Can I upload a disk image from Win994a? Other than that I have no idea how a disk image is made. Thank goodness - I was too embarrassed to ask. Quote Share this post Link to post Share on other sites
kl99 #36 Posted July 24 Hi, a question about strings in the basic program, be it as DATA "abc"or defined as variable A$="abc". Is it allowed from the contest point of view to store non printable characters in those string definitions? I am trying to sqeeze in some sound data which goes up to ascii 159 and also below ascii 32, currently i have a hexcode representation and go via CALL CHAR to VDP, but a hexcode represenation consumes twice the size in the program that is actually required. 1 Quote Share this post Link to post Share on other sites
senior_falcon #37 Posted July 24 I assumed that you would have to be able to type in the code from the keyboard with no "advanced" tricks involved. Otherwise you are opening the door to embedded assembly and the like. Quote Share this post Link to post Share on other sites
+Vorticon #38 Posted July 25 On 7/23/2019 at 10:39 PM, senior_falcon said: I assumed that you would have to be able to type in the code from the keyboard with no "advanced" tricks involved. Otherwise you are opening the door to embedded assembly and the like. Yes, if it cannot be typed at the keyboard, then it's no allowed. 1 Quote Share this post Link to post Share on other sites
senior_falcon #39 Posted July 25 (edited) Would it be permissible to have comments in addition to the 10 lines? This way you could have the instructions as part of the program instead of a separate file. (edit) The rules clearly state 10 lines. If one wanted to have instructions they could be in a separate program with the instructions. Since a printed description of how to use the program is acceptable, it seems to me that a separate program or file that puts the instructions on the screen should be OK as well. Edited July 25 by senior_falcon changed my mind about this Quote Share this post Link to post Share on other sites
+OLD CS1 #40 Posted July 25 CTRL characters on the TI can take you up above 127 when entering BASIC. Check the Reference Guide for keyboard scan values. Below 32 is possible with the right scan mode, but not in BASIC editing. This is a trick I have used frequently, but makes it difficult to post the listing. Quote Share this post Link to post Share on other sites
+adamantyr #41 Posted July 25 40 minutes ago, OLD CS1 said: CTRL characters on the TI can take you up above 127 when entering BASIC. Check the Reference Guide for keyboard scan values. Below 32 is possible with the right scan mode, but not in BASIC editing. This is a trick I have used frequently, but makes it difficult to post the listing. Yeah, and sometimes it messes up cut and paste on the modern computers too. Quote Share this post Link to post Share on other sites
kl99 #42 Posted July 27 Thanks for the clarification guys. I seem to be able to enter 32-189, but not below ascii char 32. Last weekend for the contest guys!!! I am continuing programming now To everyone who is also doing something, I hope you enjoy it as much as me! 2 Quote Share this post Link to post Share on other sites
+Vorticon #43 Posted July 28 Looking forward to seeing what you come up with! 1 Quote Share this post Link to post Share on other sites
senior_falcon #44 Posted July 28 (edited) I wanted to have a remark at the beginning of my program to identify what it was. Unfortunately, all 10 lines are needed for code. I came up with a clever way to do the equivalent. If my program was named ASTEROIDS (it isn't!) line 1 would be: 1 ASTEROIDS=HWILHELM2019::CALL CLEAR, ETC... Just a few bytes, but now when you list the program you know what it is. Edited July 28 by senior_falcon pushed enter too soon 4 Quote Share this post Link to post Share on other sites
tibasic #45 Posted July 29 That's a neat idea! In basic I've been using ASC("! comment")/33 to document code when it gets too confusing. It might slow things down a bit but it doesn't seem that noticeable. I remove to comments when everything is working though. It seems to work in extended basic as well. 100 A=2*ASC("! SET A TO 2")/33 110 PRINT A OR 100 A=2*ASC("! SET A TO 2")/33 :: PRINT A 2 1 Quote Share this post Link to post Share on other sites
jrhodes #46 Posted July 29 (edited) 22 hours ago, senior_falcon said: I wanted to have a remark at the beginning of my program to identify what it was. Unfortunately, all 10 lines are needed for code. I came up with a clever way to do the equivalent. If my program was named ASTEROIDS (it isn't!) line 1 would be: 1 ASTEROIDS=HWILHELM2019::CALL CLEAR, ETC... Just a few bytes, but now when you list the program you know what it is. whats wrong with using XB's trailing comments? True, they don't work in normal BASIC but still ... 1 CALL CLEAR::ETC ...::!ASTEROIDS, H WILHELM 2019 Edited July 29 by jrhodes Quote Share this post Link to post Share on other sites
GDMike #47 Posted July 29 From what I remember, I would do a rem, press enter, call it back up and edit the file then it would be ok?? Quote Share this post Link to post Share on other sites
senior_falcon #48 Posted July 30 3 hours ago, jrhodes said: whats wrong with using XB's trailing comments? True, they don't work in normal BASIC but still ... 1 CALL CLEAR::ETC ...::!ASTEROIDS, H WILHELM 2019 When you list my program the lines are around 6 screen lines long. The trailing comment buries the information at the end of the line where it is not obvious rather than up front where it is easy to see. Quote Share this post Link to post Share on other sites
senior_falcon #49 Posted July 30 Johnny British asked: "Can I ask how many chars can a single line of TI Basic, xb etc contain" I don't know the number in TI BASIC, but XB can have 159 bytes in a line (Plus the line number) Notice I said bytes and not characters. XB "tokenizes" the line of code so that FOR is one byte, NEXT is one byte, CALL is one byte, etc. So you cannot just count up the displayed characters. When you're entering a long line XB will not take any more than 5 lines. When you hit this limit, press Enter and then F8. Now you can add additional lines beyond the 5 line limit. Paste XB in Classic 99 doesn't have this limitation. 1 Quote Share this post Link to post Share on other sites
kl99 #50 Posted July 30 > Submission deadline: July 31st, 2019 midnight GMT This is a bit unclear to me. Midnight before 31st July starts or midnight after 31st July ended in GMT? Best regards, Klaus Quote Share this post Link to post Share on other sites