flat assembler
Message board for the users of flat assembler.
Index
> OS Construction > FASM Challenge - For all users Goto page Previous 1, 2, 3 ... 12, 13, 14, 15 Next |
Author |
|
Dex4u 12 Sep 2008, 14:31
Cool,what image format are you using (eg: bmp, gif, jpeg etc).
|
|||
12 Sep 2008, 14:31 |
|
dosin 12 Sep 2008, 16:09
desk top :800*600 256.. bmp - to save on space!
splash - can be any size.. or use the 800*600 you can use a hire res.. and I will convert it.. you can use jpeg gif ect.. |
|||
12 Sep 2008, 16:09 |
|
edfed 12 Sep 2008, 16:43
i think about resolution.
1024*768 is mine 800*600 is yours. then, instead of coordinates, it would be fine to have portions of screen 10% in 1024 = 102pxl in 800 = 80pxl. and then, when we'll have a good image scaler, it will be easy to put any image in what dimensions we want. but it is only graphic effects. the problem for me is to control the memory content. create new items. destroy and free memory. then, a memory map is needed i think. what granularity? Kilobyte? Megabytes? Last edited by edfed on 13 Sep 2008, 18:26; edited 1 time in total |
|||
12 Sep 2008, 16:43 |
|
dosin 13 Sep 2008, 17:30
I am working on taking Dexs window design and combining the code into one function for windows in fbrowser... either with an int or call fwin function.. and combine the window txt,buttuns,edit box ect.. To create one objet that works together by the coords and dim of the window..
and create graphic functions for the window.. lines,text, boxes, scrol,buttons, ect.. Right now every thing is seperate object.. have to re-enter all locations of every object every time the win is moved or re-sized... It make it easier to open and close/create a new win - and I am adding the txt funcion to the edit box on the browser - so we can enter a webpage address pretty simple should be done soon.. and making some head way in the parser.. keeping it simple!! Dex - looking forward to the designs you come up with!!! for the background or icon.. |
|||
13 Sep 2008, 17:30 |
|
edfed 13 Sep 2008, 18:25
have you got code to work on?
|
|||
13 Sep 2008, 18:25 |
|
Dex4u 13 Sep 2008, 18:29
I will post them soon , also i am working on a image scaling function, so you can scale the image to fit screen size.
|
|||
13 Sep 2008, 18:29 |
|
edfed 13 Sep 2008, 18:33
i am working on too.
|
|||
13 Sep 2008, 18:33 |
|
dosin 13 Sep 2008, 19:03
Quote: have you got code to work on? ??? Quote: so you can scale the image to fit screen size. Nice.. the prob with most images is the size using a floppy ... one of these days I will update to a flash drive or something better... more space equ higher res images! |
|||
13 Sep 2008, 19:03 |
|
edfed 13 Sep 2008, 19:11
the two lines will be conserved as tables.
Code: xscaler rd 320 yscaler rd 200 ;to threat only image lower than screen 13h about images, i think it is better to create them using iteration of forms and efftects. start of a visualistion lib? |
|||
13 Sep 2008, 19:11 |
|
dosin 13 Sep 2008, 20:11
okay - got it.. was not sure what you were refering to..
How is it going for you? Are you still thinking of maping the mem? |
|||
13 Sep 2008, 20:11 |
|
Dex4u 14 Sep 2008, 12:54
I am working on a graphic lib, that has jpeg, gif, bmp, scaling, plus GUI functions.
Also i have written a xp program to put floppy or hdd images to usb fob, its 90% finished, you can use that . |
|||
14 Sep 2008, 12:54 |
|
dosin 14 Sep 2008, 13:42
Quote: written a xp program to put floppy or hdd images to usb fob, its 90% finished, you can use that I would like try it when its finished. Thanks.. Quote: I am working on a graphic lib, that has jpeg, gif, bmp, scaling, plus GUI functions Sounds like you have been busy.. Cant wait to see what you come up with!!! |
|||
14 Sep 2008, 13:42 |
|
dosin 15 Sep 2008, 20:02
Here is a bigger screen shot of the FBrowser..
Displays an error msg when page not found.. adding more to the window code and mouse support to move window,ect.. added back ground image.. Function for the edit box will be added next.. and the parser is getting there.. Just giving an update!
|
|||||||||||
15 Sep 2008, 20:02 |
|
Dex4u 16 Sep 2008, 14:43
Cool, does the move window use a frame ( eg: a sq box) or does it move the whole window ?.
Also any chance of a floppy image to try it out . |
|||
16 Sep 2008, 14:43 |
|
dosin 16 Sep 2008, 15:36
The way I am setting it up right now is when you click on the top of the window and hold in the mouse button.. it will draw a outline and then redraw when released.. will post code at the beginning of next week
|
|||
16 Sep 2008, 15:36 |
|
edfed 16 Sep 2008, 15:55
easy to code.
what about the parser? that is the main pb in this project/contest. do you use my method for tag resolution or an other? just to know if my work have any kind of utility... |
|||
16 Sep 2008, 15:55 |
|
dosin 16 Sep 2008, 20:32
Quote: that is the main pb in this project/contest. I am not looking at it as a contest.. I am here trying to make a web browser with win funtions that people like to use with it.. move the window.. resize .. ect... right now it still boots in a couple seconds.. what will slow it down it the connection to the net... also going to add some simple multitasking to it.. this weekend.. I will have to see were it goes.. The parser is being worked on... will post this version when its done.. I do not have the latest example of your work.. edfed.. I just used the origional version that Dex made.. I want it to be able to open any web page programmed in html.. and display it.. The parser is going to take the longest.. There are a lot of parts to it .. most important - graphics.. |
|||
16 Sep 2008, 20:32 |
|
Dex4u 17 Sep 2008, 14:24
I have a bit of time spare so i will add some work to this project, but as i see it, the parser will need to be worked on bit by bit, as in when everything eles is done, we write a parser that displays a simple hello world html page, than add more and more untill it can display anypage, thats the only way to make this sort of project, as if not you will spend too much time debuging.
This meford has always worked for me. Last edited by Dex4u on 17 Sep 2008, 15:47; edited 1 time in total |
|||
17 Sep 2008, 14:24 |
|
dosin 17 Sep 2008, 15:44
Quote: parser, will need to be worked on bit by bit I agree - there are a lot of elements to the parser .. and will be a work in progress.. I am just trying to make it user freindly also.. Dex - hopefully will send you the bootable exapmle for testing in about 5 days |
|||
17 Sep 2008, 15:44 |
|
Goto page Previous 1, 2, 3 ... 12, 13, 14, 15 Next < Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.