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 - Vijfhoek

Pages: 1 2 [3] 4 5 ... 9
31
Other / Re: Getting a new desktop
« on: September 23, 2013, 01:51:47 pm »
If you go under 150 dollars, AMD CPUs are your best bet. When going higher, surely go Intel. The 3570K blows its competitor from AMD out of the water, even though it has a lower clock rate and a lower amount of cores. Also, avoid PSUs from B brands, they tend to be inefficient, noisy and they generally don't last long. 700W should be enough though.

--EDIT--: I heard the ASUS Xonar is meh. I'd recommend a Creative Labs Sound Blaster Z, it's a bit more expensive but way better.

32
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 22, 2013, 04:36:57 pm »
The menu is all there is so far. I haven't had a lot of time last weekend, so I haven't made an awful lot of progress.

33
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 22, 2013, 04:23:55 pm »
Oh, that arrow (I Google-translated it and it said "string"). It means that it's archived.

34
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 22, 2013, 03:29:49 pm »
It means that the program is selected. As soon as I have time, I'll start working on replacing it with what you see above this post on this page.

35
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 22, 2013, 07:27:45 am »
You cheated a bit on mockup007 and used pixels that aren't there :P
This is what it'd look like when aligned to pixels:


I also thought it might look better if the title was just outlined instead of inverted, but I don't really like it:


Anyway, I think I like mockup008 most.

36
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 22, 2013, 03:43:29 am »
Problem with the right inversion is that it looks meh when it's at the top, because of the title bar:

37
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 21, 2013, 05:52:50 pm »
I'm having a hard time finding a good-looking and clear way of separating them, I think this is my best attempt:

I totally eyeballed the line placement, so it might be off-place by a few.. million px.

Inverting the entire row, instead of placing an arrow, would clarify that it all belongs to eachother and that it's not just another column of progs, but it doesn't look good at all in my opinion:

38
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 21, 2013, 07:12:33 am »
Suggestion: Display the name how it'll look when compiled like on the right/some other stats of the current prog like lines etc?

Something like this? (Mockup)

question : the IDE will be a applications or a programe ? (applications should be cool)
I think I'll release it as an application.

39
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 20, 2013, 07:13:07 pm »
I suggest you to reserve last line for options, like edit, lock, archive and copy/rename.

Ask, and it shall be given to you:


I've also worked on performance.

40
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 19, 2013, 02:59:46 pm »
That I just finished the scrolling code like 2 minutes ago!

The rest of the program browser (which includes fixing the disappearing cursor when scrolling and disabling the marching ants) should be a piece of cake

41
Axe / Re: Animated Sprites
« on: September 19, 2013, 11:31:56 am »
I always display a bunch of separate sprites, I'm pretty sure that's how you're supposed to do it. For example, a waving horizontal line:

Code: [Select]
.WAVYNESS
[FF00000000000000]->Pic1
[00FF000000000000]
[0000FF0000000000]
[000000FF00000000]
[0000FF0000000000]
[00FF000000000000]

.F = frame
0->F

Repeat getKey(15)
 DispGraphClrDraw
 F++
 If F>5
  0->F
 End

 Pt-On(0,0,Pic1+(F*8))
End

42
Miscellaneous / Re: Birthday Posts
« on: September 17, 2013, 04:27:32 pm »
Heppie birfday en welcom too me age

43
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 17, 2013, 02:26:01 pm »
I do care about cramming as much on the screen as possible though - one main goal I wanted is being able to fit "[0011223344556677]->Pic1" on the screen, which just fits now. That's also why I don't put the line numbers to the left of the lines, it doesn't fit :/

--EDIT--
Terrible news, I just came to realize a terrible coding decision. I now have to rewrite half of the program listing, it hurts my feelings..
I hope I don't get myself into a rewrite loop like many other projects :(

--EDIT2--
I just finished rewriting, but I still have to debug. Program shrunk about 20 bytes in size :D

--EDIT3--
Debugged and working fine. I will continue the work on scrolling as soon as I'm back home.

44
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 17, 2013, 01:59:43 pm »
It shouldn't be hard to make it configurable though. Also yeah, I couldn't find a rectangle in the variable size font
--EDIT-- Doublepost sorry!

45
TI Z80 / Re: AxIDE: An Axe IDE
« on: September 17, 2013, 11:52:21 am »
And vim is what inspired me :)
Also, I'll be able to put F-button descriptions there

Pages: 1 2 [3] 4 5 ... 9