Search found 619 matches

by SeregaZ
Sun Apr 07, 2024 12:10 am
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 36
Views: 23603

Re: Color Quantizing Image Editor

all of that years old code serve with image paste for Sega Genesis console games.
by SeregaZ
Sat Apr 06, 2024 8:51 pm
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 36
Views: 23603

Re: Color Quantizing Image Editor

as i can understand this algo work with heavy colors. i mean save that colors, pixels of which is bigger count, than other. but i found something another, that works, by my opinion, better:
https://rilden.github.io/tiledpalettequant/

i hope you can see some ideas, that can apply to your code.
by SeregaZ
Thu Feb 29, 2024 7:56 am
Forum: Coding Questions
Topic: How to read pointer+offset from other process (like Cheat Engine)?
Replies: 17
Views: 4410

Re: How to read pointer+offset from other process (like Cheat Engine)?

How to get size of memory of that process? I want to make full dump as file and watch what it have, to know where to dig later...
by SeregaZ
Wed Feb 28, 2024 2:53 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

ParseCode = 3 and then 4 when it start parse inside first know address - it found new one. store into array. continue parse first until endoffunction opcode. start parse second item from array of knowing address (it was added from first parse). same happen - it found new address and add it into arr...
by SeregaZ
Wed Feb 28, 2024 2:35 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

When you click on the Button "hotdiasm" it emulate select some raw byte and count it as some address of code and try to parse from it. that is why i make restart format again from begining. it can found some new addresses inside like reqursive. it means all labels and end of line and stri...
by SeregaZ
Wed Feb 28, 2024 11:13 am
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

Procedure ParseCode(sz.l) For i = 1 To globalarraysz ; For I = 0 To 6.000.001 Why? because that globalarraysz is variable. when it pass first time - it can get new addresses. that addresses will be add at the end of order and globalarraysz value is encrease until For is still running. and it is not...
by SeregaZ
Wed Feb 28, 2024 5:32 am
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

no, it still spend lot of money for process... it becomes better, but still not fine :) probably i will giveup.
by SeregaZ
Wed Feb 28, 2024 4:51 am
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

i made my way with memory addresses and size, instead making string for raw data lines. and it start work much faster, than it was before. thanks. will try to attach that variant to main code and see what happen :) Enumeration #Window #Canvas #Scroll #Button EndEnumeration DataSection startdata: Dat...
by SeregaZ
Tue Feb 27, 2024 7:04 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

or i no need to make format raw data as string, but left it as memory... and convert that memory into string only when canvas show exactly this place. it will need to format 20-30 lines (30x16 = 480, insted 6mln at once). and save result of format and show next time that data, not new formated... so...
by SeregaZ
Tue Feb 27, 2024 6:58 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

maybe i set it at wrong place... but that HexStringFromBuffer takes 10873mlsec, but my PeekA = 6455. ; 10873 for HexStringFromBuffer(*RomFileMemImage + i, 1) ;valuetoshow = PeekA(*RomFileMemImage + i) ; 6455 for PeekA and rset + hex If stringscounter = 0 outputstring$ = "dc.b $" + HexStrin...
by SeregaZ
Tue Feb 27, 2024 2:05 pm
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

Re: output data organisation.

i am working on demo code all of that time :) Enumeration #Window #Canvas #Scroll #Button EndEnumeration DataSection startdata: Data.b $01, $02 ; command 01 Data.b $03, $04, $05 ; command 02 Data.b $06, $07, $08 ; command 03 Data.b $09, $00, $23 ; command 04 url to other part of code. 09 code and $0...
by SeregaZ
Tue Feb 27, 2024 6:16 am
Forum: Coding Questions
Topic: output data organisation.
Replies: 14
Views: 602

output data organisation.

i am working on dissassembler and have some problem with output data organisation. parse of code work fine. but other part of file should be paint as raw data - dc.b $xx, $xx, $xx... 16 bytes per line. that lines can be interrupt by some labels or part of code and some lines can be less that 16 byte...
by SeregaZ
Sat Feb 17, 2024 2:08 am
Forum: Applications - Feedback and Discussion
Topic: libDataChannelPB WebRTC library
Replies: 20
Views: 2192

Re: libDataChannelPB WebRTC library

i just to want understand that is case, where i need use it or it can be done by standart PB functions? this header, that i capture is bad and i need all of that libdatachannel, or i can use usual functions of PB for it?
by SeregaZ
Sat Feb 17, 2024 1:48 am
Forum: Applications - Feedback and Discussion
Topic: libDataChannelPB WebRTC library
Replies: 20
Views: 2192

Re: libDataChannelPB WebRTC library

i just google PRI * HTTP/2.0 SM and it brings me here.

from here: https://www.purebasic.fr/english/viewto ... 04#p614204

i am come to wrong place?
by SeregaZ
Sat Feb 17, 2024 1:07 am
Forum: Applications - Feedback and Discussion
Topic: libDataChannelPB WebRTC library
Replies: 20
Views: 2192

Re: libDataChannelPB WebRTC library

that is not my programs. they both start with 127.0.0.1 and work "local". i want to make equalent one of that two. and it have github open source, but that is cpp probably. and probably i found where that place, that i need, but i hope it have some dialog order or Select command to see wha...