Official eMule-Board: Emule Morphxt 0.50A 12.6 [19-12-2010] - Official eMule-Board

Jump to content


  • (3 Pages)
  • +
  • 1
  • 2
  • 3

Emule Morphxt 0.50A 12.6 [19-12-2010] Will this fix it all at long last?

#21 User is offline   Knoxwille 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 04-October 06

Posted 24 January 2011 - 08:50 AM

View PostStulle, on 21 January 2011 - 07:39 PM, said:

it gets harder to focus on solving the problem when you need to focus on what information is new... no easy way of telling that when not using the quote tags. i even said please, which is something i don't do very frequently. so why don't you stop being a noob git and come up with something that helps fixing bugs in MorphXT? but apparently it's not even MorphXT's fault but the fault of that weirdo AV of yours. so go and annoy them!

PS: also ask your superior what he thinks about you using eMule on company resources. i bet he's gonna be thrilled!

Please be cool first.
I'm already asked for how can I get a dump file for better help but Morph killing by AV before create a dump file this is not my fault.
Yes, maybe this is AV's bug. I've send a mail to AV's support. They said a patch on the way.
Do you think I'm noob!? Do you think everyone are noob which no information? Nobody born as Emule master or programmer or forum mod everything can be learn step by step.

PS: I'm using my own bandwith there is no problem with my company they are know me and trusting me THEY ARE NOT LIKE YOU.

Just some :respect: Even I deserve it!
1

#22 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 24 January 2011 - 05:35 PM

............................................________
....................................,.-'"...................``~.,
.............................,.-"..................................."-.,
.........................,/...............................................":,
.....................,?......................................................\,
.................../...........................................................,}
................./......................................................,:`^`..}
.............../...................................................,:"........./
..............?.....__.........................................:`.........../
............./__.(....."~-,_..............................,:`........../
.........../(_...."~,_........"~,_....................,:`........_/
..........{.._$;_......"=,_......."-,_.......,.-~-,},.~";/....}
...........((.....*~_......."=-._......";,,./`..../"............../
...,,,___.\`~,......"~.,....................`.....}............../
............(....`=-,,.......`........................(......;_,,-"
............/.`~,......`-...............................\....../\
.............\`~.*-,.....................................|,./.....\,__
,,_..........}.>-._\...................................|..............`=~-,
.....`=~-,_\_......`\,.................................\
...................`=~-,,.\,...............................\
................................`:,,...........................`\..............__
.....................................`=-,...................,%`>--==``
........................................_\..........._,-%.......`\
...................................,<`.._|_,-&``................`
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
1

#23 User is offline   Cthulhu_Ita 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 70
  • Joined: 01-July 05

Posted 29 January 2011 - 05:19 PM

Stulle,

i notice something strange (visual); when you move from any menu to Search, not always (at the moment i don't understand the trick yet), you can see a button "Search Parameters..." on the right (see image) that disappears automatically after some seconds

Posted Image


if you select it, nothing happens. Is it normal?
I'm using Microsoft Windows XP Professional SP3 (32bit).

Regards.
0

#24 User is offline   morph4u 

  • Splendid Member
  • PipPipPipPip
  • Group: Members
  • Posts: 146
  • Joined: 10-October 08

Posted 29 January 2011 - 08:32 PM

^^
hi,
can't say why but the reason for this (maybe display bug) is this part
// morph  wine: and save some cpu

in emuledlg.cpp
0

#25 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 29 January 2011 - 09:39 PM

well, this is a known issue... although i tend to believe it's not really an issue because it is being resolved almost immediately.

about your findings, Morph4u, i didn't look into to it in too much detail but I think the mentioned code will stall queued messages every now and then to reduce the load produced when running the client in wine. i assume that the processing of the message queue and so forth is using a lot more resources in wine then in regular windows. anyway, this code is active regardless on the system MorphXT is being run in.
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
0

#26 User is offline   morph4u 

  • Splendid Member
  • PipPipPipPip
  • Group: Members
  • Posts: 146
  • Joined: 10-October 08

Posted 29 January 2011 - 09:46 PM

I replaced the morph code

// morph  wine: and save some cpu
BOOL CemuleApp::OnIdle(LONG lCount)
{
	static DWORD dwLastCheck[2];
	int index=(lCount<=0)?0:1;
	DWORD dwNow = GetTickCount();
	if (dwNow - dwLastCheck[index] >= SEC2MS(5))
		{
			dwLastCheck[index]= dwNow;
			return CWinApp::OnIdle(lCount);
		}
		return FALSE ;

}
// morph  wine: and save some cpu 


with Xman code in MorphCA

//Xman Code Improvement
			//enough to clean up handle maps every minute
			/*
			lResult = theApp.OnIdle(lIdleCount);
			*/
			static uint32 lastprocess;
			if(lIdleCount>0)
			{
				theApp.OnIdle(lIdleCount); //free maps
				lastprocess=::GetTickCount();
				return 0;
			}

			if(theApp.OnIdle(0 /*lIdleCount*/) && ::GetTickCount() - lastprocess > MIN2MS(1)) 
				lResult=1;
			else
				lResult=0;
			//Xman end


and the strange display "bug" is gone.
0

#27 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 30 January 2011 - 08:12 AM

i tend to believe this is basically driving the idea leuk_he implemented ad absurdum. the reason being that calling the MFC function whenever there is something to do is not keeping it from being called if there is something to do but we deem it appropriate to wait another 5 sec.

besides, the code you posted is in OnKickIdle and the other one is OnIdle, so while the one is responsible of calling OnIdle the other one is responsible to actually do the job. that means to say if OnIdle is called from other places (e.g. other MFC functions) leuk_he's code will prevent the MFC function from being executed while Xman is just doing some queuing of calls from within eMule.
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
0

#28 User is offline   Cthulhu_Ita 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 70
  • Joined: 01-July 05

Posted 30 January 2011 - 10:31 PM

Stulle,

i notice the same also in Official version (with only a timing difference) so i post also in Bug Reports section in order to eventually understand something more about it.
I hope it can help.

Regards.
0

#29 User is offline   ajdedo 

  • Member
  • PipPip
  • Group: Members
  • Posts: 40
  • Joined: 26-December 04

Posted 14 February 2011 - 12:24 AM

Hi,

I am changing computers from a desktop to a laptop.

I have 0.50A running on my desktop and i would like to move it, along with all my credits, friends, etc. over to my laptop. My new laptop will have a frsh install of windows and a fresh install of MorphXT.

What files and/or folders do I need to copy from my old computer to my new one so I can save all my credits and other details?

Thanks!
0

#30 User is offline   SmOkPL 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 11
  • Joined: 14-February 08

Posted 29 June 2011 - 09:06 PM

Hello, I have two questions.

1) I added a file to download about 2 hours ago. I look at the send window, I see the user who download this file from me - stating that it is waiting for 9:23 hours. This file is from another series and you are not standing with me on the other files, has HighID - even if they do not wait that much :) Where did the time?

http://imageshack.us...ulemorphxt.jpg/

2) Usually release pearls, files, a small number of sources. I had known all sources of ~ 700 to 500 shared files. I got used to that Morph after adding the file shows the source found in jumps of 100. I added a file, 100, 200 ... 273 sources found. Stopped with 20 files (and so it did not fetch them), which I download 0-2 sources. Found on the file ended up at ~ 320th (I do not know whether this rule and a good clue). At the same time on another computer, I added the same file and I eventually found about 720 sources. I do not know why such a difference. I can not find the narrow space. I have set on the file sources 600, 450 calls / sec, of which at that time I've seen used for Stats about ~ 100 connections. What can I improve / set / check to find all sources or as much as I set the limit for a file?

I greet magicians
0

#31 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 29 June 2011 - 10:38 PM

1) the time indicated in the upload list is how long the client waited to receive an upload slot. this is utterly unrelated to downloading (except for which parts can be uploaded, obviously).

2) how many sources you find and keep depends on a number of things. finding sources is done via servers, kad and source exchange (from other sources). once a source is found and not filtered by IP we will contact it. if the contact fails because the other client does not respond the source will be removed. the contact may fail on one computer but may not fail on another due to different load on either of the internet connections (remote or local) or different routing or ipfilter, ...

lastly, i do not know if you used an automatic translator but whatever you used or did when writing your post was horrible. this is next to impossible to decipher. most of the time i just skimmed your post for keywords in order to make some meaning of them. i don't expect proper english but i expect to read something that is easier to understand then a sphinx' riddle.
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
0

#32 User is offline   SmOkPL 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 11
  • Joined: 14-February 08

Posted 30 June 2011 - 09:40 AM

Sorry for the translation, I'll try to be more

1) Strange, it follows that: client stood - in my queue 6 hours before this, when I added a file to download? (prophet?) As written, this client is just this one file. I have no other, that would be needed for him.

I will still monitor it - maybe something I notice. EmuleMorph used for years and are generally fairly well know principle of operation p2p.

A small request for such an option. I suspect that the official version - it did not live to see but in the best emule mod - this feature would be great.
http://forum.emule-p...howtopic=153275

I greet
0

#33 User is offline   SmOkPL 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 11
  • Joined: 14-February 08

Posted 30 June 2011 - 10:21 AM

Often working with Morph - I have several comments:

Often turn on / turn off the option - add files download in paused mode. Is there a chance to pull this option somewhere on the top? icon?

Morph is the superior option to download - alphabetical priority. When I move the main window next to the bookmark category files that no longer have normal priority. Is there any possibility of refresh - when this option (alphabetical priority) is turned on?

In the Shared Files window is a column: complete sources. It is possible to add columns - all the sources? (complete + to actually send + queued). Sometimes I have to delete any files, and I would do the least invasive for the network :)

I greet
Please move this post to category: Morph Feature Request, thank you

This post has been edited by SmOkPL: 30 June 2011 - 10:23 AM

0

#34 User is offline   You Know 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 3
  • Joined: 11-August 05

Posted 04 September 2011 - 05:34 PM

Webserver Multiuser enabled.
Variable [CATBOX] in the Search page it's totally wrong. I must come back to 12.5


EDIT: problem found, after update all category's options are lost (name, output folder, priority ecc ecc) with exception of first 3 :(

This post has been edited by You Know: 04 September 2011 - 05:56 PM

-2

#35 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 04 September 2011 - 06:09 PM

i have no idea what you are trying to tell me.
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
1

#36 User is offline   pupet 

  • Member
  • PipPip
  • Group: Members
  • Posts: 29
  • Joined: 24-November 05

Posted 27 April 2012 - 12:40 PM

Bonjour Stulle desoler de vous parlez en français, c'est parce que je suis trop nulle pour vous parlez en anglais, je voulait savoire si on pouvait adapter le code add: faster end game: Drop stalled downloads [Xtreme], sur la morphxt si oui comment faire merçi d'avance pour votre reponse et encore desoler pour cette demande en français. :cry: :unsure:
0

#37 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 27 April 2012 - 01:20 PM

Wow, my French apparently is not as rusty as I would have thought!

No need to introduce anything like "Faster Endgame" or "Drop stalled Downloads". We already got "Dynamic Block Request" by netfinity which ensures that an optimized number of blocks is requested based on things like the transmitting speed. IIRC, Xtreme does the same. Hence, manually dropping download sessions is not necessary and probably the only reason why Xman, ZZ_fly and myself never scrapped it from Xtreme is that we left it so old fashioned users could still use it if they so desperately wanted to.

Anway, rest assured that finishing of downloading files has been optimized in MorphXT.
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
3

#38 User is offline   Wolfclaw 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 76
  • Joined: 08-January 03

Posted 19 July 2012 - 11:56 AM

Is MorphXT dead?, no updates for a while, or have we reached a point where nothing else to add or update?


Powered By Xtreme eMule Mod
0

#39 User is offline   Stulle 

  • [Enter Mod] Dev
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 5,727
  • Joined: 07-April 04

Posted 17 August 2012 - 11:11 PM

Hmmm not per se. I would rather call it on prolonged hiatus. Truth be told, I need to focus on other things in real life so I did not code for a long time but my fingers are itching to get back to eMule business. I do hope to be able to resume my efforts in late October or November. There are still a couple of todos on my list for MorphXT, although it will prolly not be anything major.

Anyhow, if anybody is interested in joining the Morph effort you are more than welcome to message me.

PS: Sorry, I missed this post. I check on a very regular basis but sometimes I don't bother checking each sub-sub-forum and new posts get lost. :-D
I am an emule-web.de member and fan! Hate me or people will get suspicious about you! Ever wondered if it's all worth the trouble?

Posted Image

No, there will not be a new version of my mods. No, I do not want your PM. No, I am certain, use the board and quit sending PMs. No, I am not kidding, there will not be a new version of my mods just because of YOU asking for it!
3

#40 User is offline   KiwiBloke 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 4
  • Joined: 31-July 07

Posted 30 October 2012 - 11:58 PM

Hi Stulle,

I'm using MorphXT 12.6, which I think is great BTW. I have one question I hope you can help me with.

If I create a new Category, and then I add a bunch of links to that category to download, Morph will automatically give each link a new, incremental Linear Priority number. That's because I have checked "Automatically increment and assign linear priority" in the Smart Category Control section of the Mod Options - and that is what I want to happen.

However, I then mark all of the files (in the Transfer tab) as Stopped rather than Paused, except for a few that I want to start downloading. What I've noticed is, once one of the files finishes downloading, Morph will resume with another (stopped) file that is not the next one in the list according to LP. So it seems to just chose the next file randomly instead of in the correct order.

Is there any reason for this? Maybe I'm overlooking some other option that will control this, so that it will download the files according to the LP order?

Any suggestions would be appreciated!

Thanks!
0

  • Member Options

  • (3 Pages)
  • +
  • 1
  • 2
  • 3

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users