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 - shmibs
Pages: 1 ... 71 72 [73] 74 75 ... 126
1081
« on: June 01, 2011, 01:51:02 pm »
apparently, byzanz allows one to record a specified portion of the screen as well. check out these commands: byzanz-record [options] filename.gif Options Application Options:
-d, --duration=SECS Duration of animation (default: 10 seconds) --delay=SECS Delay before start (default: 1 second) -l, --loop Let the animation loop -c, --cursor Record mouse cursor -x, --x=PIXEL X coordinate of rectangle to record -y, --y=PIXEL Y coordinate of rectangle to record -w, --width=PIXEL Width of recording rectangle -h, --height=PIXEL Height of recording rectangle -v, --verbose Be verbose --display=DISPLAY X display to use
Help Options:
-?, --help Show help options --help-gtk Show GTK+ Options --help-all Show all help options
1082
« on: May 29, 2011, 05:24:08 pm »
hey scout =D here is the basic idea explained in as much detail as i can manage: firstly, your data needs to be in a readable format. if you have 4*4 tiles it doesn't seem like you'd need a full byte to designate which tile is to be drawn, but, for simplicity's sake, we'll do just that. there are plenty of half-byte tutorials out there for you to read once you have the basic idea. take the map you want to draw, assign a unique one byte value to each type of tile you are going to be drawing, and, reading from left to right, top to bottom, convert your map into a string of those byte values. for example, if  is assigned to 00,  to 01, and  to 02, and you had the following map:  it would translate to: [000001 [020102 [000202 once that's done, you need to take the images to be used for your tiles, convert them to hex data, and store them in order. although it makes the tile images take up four times what they would as 4*4 images, the absolute easiest way to handle this is to convert your images as if they were 8*8 images instead, leaving a four pixel buffer of blank both to the right of and beneath your desired image. this will make each of your images take up 8 bytes of data. i bet you know that much already, though, and the real question is how to draw any arbitrary 24 wide by 16 tall chunk of this map on the screen. that can be done with the following code: :for(L,0,23 :for(M,0,15 :PtOff(L*4,M*4,{M+[the y offset, in tiles, of the spot in the map you want to draw, starting from the uppermost tile row in the map being zero]*[the total width of your map, in tiles]+L+[the x offset, in tiles, of the spot in the map you want to begin drawing at, starting with the leftmost tile collumn in the map being 0]+[a pointer, like GDB1 for example, to where you stored the tilemap you converted earlier]}*8+[the pointer to your tile image data] :end :end
or, with real arguments inserted: :for(L,0,23 :for(M,0,15 :PtOff(L*4,M*4,{M+B*N+L+A+GDB1}*8+Pic1 :end :end where: A= xoffset B= yoffset N= total map width, in tiles GDB1= tilemap data Pic1= tile image data this method is simple, but it can be optimised a good deal (and there are plenty of threads showing how for that as well which you should be able to understand once you get the basic idea). good luck!
1083
« on: May 29, 2011, 02:46:50 pm »
/\/\ooh, do want/\/\ seconded =D
1084
« on: May 29, 2011, 02:36:12 pm »
i got an error loading gnome 3 under virtual box as well. it looks nice, though
1085
« on: May 29, 2011, 06:57:57 am »
<THIS guy looks crazy =D
1086
« on: May 28, 2011, 04:02:45 am »
as of today, i am done with highschool, so i will no longer be too busy to work on coding things. however, before i start this up again i'm going to work on the axe contest first (i actually started my entry on the way home earlier  ), and i have one other idea for a small project that i might whip up after the contest as well. hopefully at that point i won't have become so lost in my own source code that i need to start over. it's well commented, so, in theory, that shouldn't be an issue.
1087
« on: May 28, 2011, 03:54:58 am »
fancy! i doubt i'll ever use it either, as none of my *other* friends care about what i do here, but it's still pretty cool =D
1088
« on: May 28, 2011, 01:22:29 am »
WOOO! i'm not sure if i'm willing to make this my primary OS just yet, but it's still exciting  good luck eeems; i'll be here to help with testing things, as always.
1089
« on: May 27, 2011, 10:05:15 am »
i don't think so? what reason would anyone have to pirate microsoft office?
1090
« on: May 27, 2011, 10:00:46 am »
you've definitely done enough around here, dj. thanks for everything.
1091
« on: May 24, 2011, 08:42:14 am »
at present it looks delicious, and i'm certain that there's something in there that can still be optimised. try looking at larger issues like code flow and reusing variables rather than just looking at small sections on there own. it's still faster than the old version right now, and that's with moving enemies included, so i'm certain you'll be able to manage  and yes, the scenery/setting do look wonderful. good luck!
1092
« on: May 24, 2011, 08:17:20 am »
very nice... is this based on some other game of the same or a similar name?
1093
« on: May 16, 2011, 05:22:22 am »
you gots to be kidding. i've made nothing BUT puzzle and platformer stuff for the past two years x_x i have a plan, though, so it's all good. may the best game win!
1094
« on: May 15, 2011, 03:31:31 pm »
ooh, cool =D this game comes standard with rockbox, so i've tried it before and some of the levels are rather challenging. from a quick test, it looks like it's a little slow, but otherwise gameplay isn't all that bad. however, i can't find any way to quit. pressing mode takes one to the title screen, from which point any key simply returns to gameplay. pressing 2nd+on, however, succesfully turns the calc off, causing weirdness/RAM clears upon restarting. this is on my recently aquired 84+ BE running os 2.30, so maybe it uses new bcalls that 2.30 doesn't support?
EDIT: i just tested it on my 84+SE running 2.43 with the same results =/
1095
« on: May 14, 2011, 07:22:45 pm »
coolio! keeping a stable framerate is difficult, and i'm kind of daunted by the prospect of working that out for blaster master. i really liked the way this looked, particularly the character animations and walking through doors, so i can't wait to see what you do with it.
Pages: 1 ... 71 72 [73] 74 75 ... 126
|