Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 26-01-2017, 03:15
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
Angry i'am fusion

because arc is saved and precompress no, maybe I'm Fried

Code:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Diagnostics;
using System.Windows.Forms;
using System.Linq;
using System.Xml.Linq;

namespace WindowsApplication1
{
	public partial class Form1
	{
		public Form1()
		{
			InitializeComponent();
		}

		private void Button1_Click(object sender, System.EventArgs e)
		{
			string sa = "\\*";
			if (FolderBrowserDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
			{
				TextBox1.Text = FolderBrowserDialog1.SelectedPath + sa;
			}
		}

		private void Button2_Click(object sender, System.EventArgs e)
		{
			SaveFileDialog saveFileDialog1 = new SaveFileDialog();
			saveFileDialog1.DefaultExt = "arc";
			saveFileDialog1.Filter = "Archives Arc  (*.arc) |*.arc|Archives Bin (*.bin)|*.bin\"";
			saveFileDialog1.FileName = "Data1.arc";
			saveFileDialog1.FilterIndex = 1;
			saveFileDialog1.CheckFileExists = false;
			saveFileDialog1.RestoreDirectory = false;
			saveFileDialog1.CheckPathExists = true;
			if (saveFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
			{
				TextBox2.Text = saveFileDialog1.FileName;
			}
		}

		private void Form1_Load(object sender, System.EventArgs e)
		{
			RadioButton1.Checked = true;
		}

		private void BackgroundWorker1_DoWork(object sender, System.ComponentModel.DoWorkEventArgs e)
		{

			string Arc = "a -ep1 -r -lc1024 -ld1024 -mt0 -w./ -mx";
			string SrepPrecomp = "a -ep1 -r -lc1024 -ld1024 -mt0 -w./ -mprecomp+srep+exe+delta+lzma:a1:mfbt4:d158m:fb273:mc1000000000:lc8";

			if (RadioButton1.Checked == true)
			{
				Process.Start("bin\\arc", " " + Arc + " " + '\"' + TextBox2.Text + '\"' + " " + '\"' + TextBox1.Text + '\"' + " ").WaitForExit();
			}
			else
			{
				Process.Start("bin\\arc", " " + SrepPrecomp + " " + '\"' + TextBox2.Text + '\"' + " " + '\"' + TextBox1.Text + '\"' + " ").WaitForExit();
			}

			MessageBox.Show("Done!", "Compressor", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
		}

		private void Button3_Click(object sender, System.EventArgs e)
		{
			//If BackgroundWorker1.IsBusy <> True Then
			// Start the asynchronous operation.
			BackgroundWorker1.RunWorkerAsync();
			//End If
		}

		private static Form1 _DefaultInstance;
		public static Form1 DefaultInstance
		{
			get
			{
				if (_DefaultInstance == null)
					_DefaultInstance = new Form1();

				return _DefaultInstance;
			}
		}
	}

}


code by vbnet2010
Attached Files
File Type: 7z WindowsApplication1.7z (1.32 MB, 73 views)
__________________
if you understand read more

Last edited by rinaldo; 26-01-2017 at 05:55.
Reply With Quote
Sponsored Links
  #2  
Old 26-01-2017, 04:52
felice2011's Avatar
felice2011 felice2011 is offline
Registered User
 
Join Date: Feb 2011
Location: italy
Posts: 836
Thanks: 357
Thanked 1,158 Times in 390 Posts
felice2011 is on a distinguished road
Si capisce solo che sei fuso, cosa vuol dire Arc si salva e precompress No.

I do not understand the question at problem...
__________________
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« I Mediocri Imitano, I Geni Copiano, Dio Crea & Distrugge » (Io Ridefinisco & Perfeziono le Loro Opere Rendendole Uniche)
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« Mediocrities Imitate, Genius Copy, God Creates & Destroys » (I Reconsider & Improve Their Works, Rending Them One And Only)
Reply With Quote
  #3  
Old 26-01-2017, 05:27
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
Quote:
Originally Posted by felice2011 View Post
Si capisce solo che sei fuso, cosa vuol dire Arc si salva e precompress No.

I do not understand the question at problem...

che salva solo usando arc.exe senza combinarlo con altri compressori (srep-precomp) questo dai test fatti con questi 2 tool.. il bello che lo fa anche se uso tool di altri (escluso il tuo ovviamnete) ma! che no mi piace (anche se è un futuro avanti a molti)


saves only using arc without combining with other tools
__________________
if you understand read more

Last edited by rinaldo; 26-01-2017 at 05:33.
Reply With Quote
  #4  
Old 26-01-2017, 06:42
felice2011's Avatar
felice2011 felice2011 is offline
Registered User
 
Join Date: Feb 2011
Location: italy
Posts: 836
Thanks: 357
Thanked 1,158 Times in 390 Posts
felice2011 is on a distinguished road
Fammi capire tu vuoi comprimere usando compressori singoli senza il supporto di Arc, quindi 7z, rar, nanozip, precomp...le varie versioni, packet, lz4, zcm etc.

Let me understand you want to compress using individual compressors without the support of Arc ?
__________________
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« I Mediocri Imitano, I Geni Copiano, Dio Crea & Distrugge » (Io Ridefinisco & Perfeziono le Loro Opere Rendendole Uniche)
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« Mediocrities Imitate, Genius Copy, God Creates & Destroys » (I Reconsider & Improve Their Works, Rending Them One And Only)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trials Fusion - Welcome to the Abyss 2xDVD5 CIU1014M pakrat2k2 PC Games - CD/DVD Conversions 0 28-01-2015 09:42
Football Fusion in Total Club Manager 2005 ?? :( Garrett74 PC Games 2 04-03-2005 09:45
plz help wipeout fusion no mod patch double2002 PS2 Games 0 19-05-2002 11:01
Wifeout Fusion Sean_mc PS2 Games 1 11-04-2002 14:28
Wipeout Fusion: Plz Help mrupset PS2 Games 3 07-03-2002 08:43



All times are GMT -7. The time now is 03:58.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com