Thread: How to load a higher cache revision

Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1 How to load a higher cache revision 
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    How to load a higher cache revision?

    like from 317 to 377

    thanks
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    bump
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  3. #3  
    Registered Member
    Anadyr's Avatar
    Join Date
    Nov 2009
    Posts
    683
    Thanks given
    31
    Thanks received
    100
    Rep Power
    675
    for 317 to 377i think there is only 1 line you have to remove, but post your signlink.java or whatever class the cache is being loaded in
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    Code:
    package sign;
    
    import java.applet.Applet;
    import java.io.*;
    import java.net.*;
    import javax.sound.midi.*;
    import javax.sound.sampled.*;
    
    public final class signlink implements Runnable {
    
    	public static final void startpriv(InetAddress inetaddress) {
    		threadliveid = (int) (Math.random() * 99999999D);
    		if (active) {
    			try {
    				Thread.sleep(500L);
    			} catch (Exception _ex) {
    			}
    			active = false;
    		}
    		socketreq = 0;
    		threadreq = null;
    		dnsreq = null;
    		savereq = null;
    		urlreq = null;
    		socketip = inetaddress;
    		Thread thread = new Thread(new signlink());
    		thread.setDaemon(true);
    		thread.start();
    		while (!active)
    			try {
    				Thread.sleep(50L);
    			} catch (Exception _ex) {
    			}
    	}
    
    	enum Position {
    		LEFT, RIGHT, NORMAL
    	};
    
    	private final int EXTERNAL_BUFFER_SIZE = 524288; // 128Kb
    	private Position curPosition;
    
    	public void run() {
    		active = true;
    		String s = findcachedir();
    		uid = getuid(s);
    		try {
    			cache_dat = new RandomAccessFile(s + "main_file_cache.dat", "rw");
    			for (int j = 0; j < 5; j++)
    				cache_idx[j] = new RandomAccessFile(s + "main_file_cache.idx" + j, "rw");
    		} catch (Exception exception) {
    			exception.printStackTrace();
    		}
    		for (int i = threadliveid; threadliveid == i;) {
    			if (socketreq != 0) {
    				try {
    					socket = new Socket(socketip, socketreq);
    				} catch (Exception _ex) {
    					socket = null;
    				}
    				socketreq = 0;
    			} else if (threadreq != null) {
    				Thread thread = new Thread(threadreq);
    				thread.setDaemon(true);
    				thread.start();
    				thread.setPriority(threadreqpri);
    				threadreq = null;
    			} else if (dnsreq != null) {
    				try {
    					dns = InetAddress.getByName(dnsreq).getHostName();
    				} catch (Exception _ex) {
    					dns = "unknown";
    				}
    				dnsreq = null;
    			} else if (savereq != null) {
    				if (savebuf != null)
    					try {
    						FileOutputStream fileoutputstream = new FileOutputStream(s + savereq);
    						fileoutputstream.write(savebuf, 0, savelen);
    						fileoutputstream.close();
    					} catch (Exception _ex) {
    					}
    				if (waveplay) {
    					String wave = s + savereq;
    					waveplay = false;
    					AudioInputStream audioInputStream = null;
    					try {
    						audioInputStream = AudioSystem.getAudioInputStream(new File(wave));
    					} catch (UnsupportedAudioFileException e1) {
    						e1.printStackTrace();
    						return;
    					} catch (IOException e1) {
    						e1.printStackTrace();
    						return;
    					}
    					AudioFormat format = audioInputStream.getFormat();
    					SourceDataLine auline = null;
    					DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
    					try {
    						auline = (SourceDataLine) AudioSystem.getLine(info);
    						auline.open(format);
    					} catch (LineUnavailableException e) {
    						e.printStackTrace();
    						return;
    					} catch (Exception e) {
    						e.printStackTrace();
    						return;
    					}
    					if (auline.isControlSupported(FloatControl.Type.PAN)) {
    						FloatControl pan = (FloatControl) auline.getControl(FloatControl.Type.PAN);
    						if (curPosition == Position.RIGHT)
    							pan.setValue(1.0f);
    						else if (curPosition == Position.LEFT)
    							pan.setValue(-1.0f);
    					}
    					auline.start();
    					int nBytesRead = 0;
    					byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
    					try {
    						while (nBytesRead != -1) {
    							nBytesRead = audioInputStream.read(abData, 0,
    									abData.length);
    							if (nBytesRead >= 0)
    								auline.write(abData, 0, nBytesRead);
    						}
    					} catch (IOException e) {
    						e.printStackTrace();
    						return;
    					} finally {
    						auline.drain();
    						auline.close();
    					}
    				}
    				if (play) {
    					midi = s + savereq;
    					try {
    						if (music != null) {
    							music.stop();
    							music.close();
    						}
    						playMidi(midi);
    					} catch (Exception ex) {
    						ex.printStackTrace();
    					}
    					play = false;
    				}
    				savereq = null;
    			} else if (urlreq != null) {
    				try {
    					System.out.println("urlstream");
    					urlstream = new DataInputStream((new URL(mainapp.getCodeBase(), urlreq)).openStream());
    				} catch (Exception _ex) {
    					urlstream = null;
    				}
    				urlreq = null;
    			}
    			try {
    				Thread.sleep(50L);
    			} catch (Exception _ex) {
    			}
    		}
    	}
    
    	/**
    	 * Plays the specified midi sequence.
    	 * @param location
    	 */
    	private void playMidi(String location) {
    		music = null;
    		synthesizer = null;
    		sequence = null;
    		File midiFile = new File(location);
    		try {
    			sequence = MidiSystem.getSequence(midiFile);
    			music = MidiSystem.getSequencer();
    			music.open();
    			music.setSequence(sequence);
    		} catch (Exception e) {
    			System.err.println("Problem loading MIDI file.");
    			e.printStackTrace();
    			return;
    		}
    		if (music instanceof Synthesizer) {
    			synthesizer = (Synthesizer) music;
    		} else {
    			try {
    				synthesizer = MidiSystem.getSynthesizer();
    				synthesizer.open();
    				if (synthesizer.getDefaultSoundbank() == null) {
    					music.getTransmitter().setReceiver(MidiSystem.getReceiver());
    				} else {
    					music.getTransmitter().setReceiver(synthesizer.getReceiver());
    				}
    			} catch (Exception e) {
    				e.printStackTrace();
    				return;
    			}
    		}
    		music.setLoopCount(Sequencer.LOOP_CONTINUOUSLY);
    		music.start();
    	}
    
    	/**
    	 * Sets the volume for the midi synthesizer.
    	 * @param value
    	 */
    	public static void setVolume(int value) {
    		int CHANGE_VOLUME = 7;
    		midiVolume = value;
    		if (synthesizer.getDefaultSoundbank() == null) {
    			try {
    				ShortMessage volumeMessage = new ShortMessage();
    				for (int i = 0; i < 16; i++) {
    					volumeMessage.setMessage(ShortMessage.CONTROL_CHANGE, i, CHANGE_VOLUME, midiVolume);
    					volumeMessage.setMessage(ShortMessage.CONTROL_CHANGE, i, 39, midiVolume);
    					MidiSystem.getReceiver().send(volumeMessage, -1);
    				}
    			} catch (Exception e) {
    				e.printStackTrace();
    			}
    		} else {
    			MidiChannel[] channels = synthesizer.getChannels();
    			for (int c = 0; channels != null && c < channels.length; c++) {
    				channels[c].controlChange(CHANGE_VOLUME, midiVolume);
    				channels[c].controlChange(39, midiVolume);
    			}
    		}
    	}
    
    	public static Sequencer music = null;
    	public static Sequence sequence = null;
    	public static Synthesizer synthesizer = null;
    	
    	public static String findcachedir() {
    		File file = new File(System.getProperty("user.home") + "/RsRemake/");
    		if (!file.exists()) {
    			if (!file.mkdir())
    				return sencondDir();
    		}
    		return System.getProperty("user.home") + "/RsRemake/";
        }
    	
    	public static String sencondDir() {
    		File file = new File("C:/RsRemake/");
    		if (!file.exists())
    			file.mkdir();
    		return file.toString();
    	}
    
        public static String findcachedirORIG()
        {
            String as[] = {
                "c:/windows/", "c:/winnt/", "d:/windows/", "d:/winnt/", "e:/windows/", "e:/winnt/", "f:/windows/", "f:/winnt/", "c:/", "~/",
                "/tmp/", "", "c:/rscache", "/rscache"
            };
            if(storeid < 32 || storeid > 34)
                storeid = 32;
            String s = ".file_store_" + storeid;
            for(int i = 0; i < as.length; i++)
                try
                {
                    String s1 = as[i];
                    if(s1.length() > 0)
                    {
                        File file = new File(s1);
                        if(!file.exists())
                            continue;
                    }
                    File file1 = new File(s1 + s);
                    if(file1.exists() || file1.mkdir())
                        return s1 + s + "/";
                }
                catch(Exception _ex) { }
         
            return null;
     
        }
    
        public static int getuid(String s) {
    		return 889057273;
        }
    
    	public static synchronized Socket openSocket(int i) throws IOException {
    		for (socketreq = i; socketreq != 0;)
    			try {
    				Thread.sleep(50L);
    			} catch (Exception _ex) {
    			}
    		if (socket == null)
    			throw new IOException("could not open socket");
    		else
    			return socket;
    	}
    
    	public static synchronized DataInputStream openURL(String s) throws IOException {
    		for (urlreq = s; urlreq != null;)
    			try {
    				Thread.sleep(50L);
    			} catch (Exception _ex) {
    			}
    		if (urlstream == null)
    			throw new IOException("could not open: " + s);
    		else
    			return urlstream;
    	}
    
    	public static synchronized void dnslookup(String s) {
    		dns = s;
    		dnsreq = s;
    	}
    
    	public static synchronized void startthread(Runnable runnable, int i) {
    		threadreqpri = i;
    		threadreq = runnable;
    	}
    
    	public static synchronized boolean wavesave(byte abyte0[], int i) {
    		if (i > 0x1e8480)
    			return false;
    		if (savereq != null) {
    			return false;
    		} else {
    			wavepos = (wavepos + 1) % 5;
    			savelen = i;
    			savebuf = abyte0;
    			waveplay = true;
    			savereq = "sound" + wavepos + ".wav";
    			return true;
    		}
    	}
    
    	public static synchronized boolean wavereplay() {
    		if (savereq != null) {
    			return false;
    		} else {
    			savebuf = null;
    			waveplay = true;
    			savereq = "sound" + wavepos + ".wav";
    			return true;
    		}
    	}
    
    	public static synchronized void midisave(byte abyte0[], int i) {
    		if (i > 0x1e8480)
    			return;
    		if (savereq != null) {
    		} else {
    			midipos = (midipos + 1) % 5;
    			savelen = i;
    			savebuf = abyte0;
    			play = true;
    			savereq = "jingle" + midipos + ".mid";
    		}
    	}
    
    	public static void reporterror(String s) {
    		System.out.println("Error: " + s);
    	}
    
    	private signlink() {
    	}
    
    	public static final int clientversion = 317;
    	public static int uid;
    	public static int revision = 2;
    	public static int storeid = 32;
    	public static RandomAccessFile cache_dat = null;
    	public static final RandomAccessFile[] cache_idx = new RandomAccessFile[5];
    	public static boolean sunjava;
    	public static Applet mainapp = null;
    	private static boolean active;
    	private static int threadliveid;
    	private static InetAddress socketip;
    	private static int socketreq;
    	private static Socket socket = null;
    	private static int threadreqpri = 1;
    	private static Runnable threadreq = null;
    	private static String dnsreq = null;
    	public static String dns = null;
    	private static String urlreq = null;
    	private static DataInputStream urlstream = null;
    	private static int savelen;
    	private static String savereq = null;
    	private static byte[] savebuf = null;
    	private static boolean play;
    	public static boolean musicOn = true;
    	private static int midipos;
    	public static String midi = null;
    	public static int midiVolume;
    	public static int midivol = midiVolume;
    	public static int fadeMidi;
    	public static int midifade = fadeMidi;
    	private static boolean waveplay;
    	private static int wavepos;
    	public static int wavevol;
    	public static boolean reporterror = true;
    	public static String errorname = "";
    
    }
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    bump
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    bump
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    bump
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    bump
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  9. #9  
    Client Developer

    Pb600's Avatar
    Join Date
    Dec 2008
    Posts
    2,184
    Thanks given
    306
    Thanks received
    489
    Rep Power
    925
    It was explained already, why are you bumping? Also I'm sure that there's snippets that explain how LOAD 377 Cache.
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  10. #10  
    Registered Member
    Join Date
    Aug 2009
    Posts
    630
    Thanks given
    79
    Thanks received
    24
    Rep Power
    52
    yes but i dont know what line.
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

Page 1 of 2 12 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Help load higher cache
    By BuhRock in forum Help
    Replies: 4
    Last Post: 07-30-2012, 11:01 AM
  2. Low revision loading higher cache
    By Conscientia in forum Help
    Replies: 1
    Last Post: 06-08-2012, 09:11 AM
  3. Replies: 126
    Last Post: 04-11-2012, 10:47 PM
  4. packing a higher revision into a cache
    By 64Bit in forum Tutorials
    Replies: 105
    Last Post: 04-09-2012, 01:55 PM
  5. How to load higher cache versions?
    By Chris SS in forum Help
    Replies: 6
    Last Post: 09-19-2011, 01:02 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •