![]() |
[C#] LF Studio by wirwl - Printable Version +- Little Fighter Empire - Forums (https://lf-empire.de/forum) +-- Forum: General Zone (https://lf-empire.de/forum/forumdisplay.php?fid=23) +--- Forum: Programming (https://lf-empire.de/forum/forumdisplay.php?fid=50) +--- Thread: [C#] LF Studio by wirwl (/showthread.php?tid=6669) |
[C#] LF Studio by wirwl - wirwl - 07-04-2011 I'm glad present my Advanced Data Editor that I'm called "Little Fighter Studio", short name "LFS" There are syntax highlight, auto-complete window, projects explorer, you can run lf2 exe directly in App and so on. Advanced users can create plugins. You need experience with Visual Studio and C#. There are next plugins: 1) MultiLineFindAndReplace (last build 102) Show screenshot (Click to View) Show screenshot (Click to View) Show screenshot (Click to View) 1) Char installer 2) Visual background editor - like in this video: http://youtu.be/9pyRVJxHiXk 3) An many others plugins... System requirement: 1) The Microsoft .NET Framework 4 redistributable package (stand alone) or Web Installer(clickable) Download last version (with plugins): LFStudio 1.0.1 - http://u.to/on6cAg Official Youtube channel: http://www.youtube.com/user/LitteFighterStudio Avaliable videos: 1) Import files from File System Some screenshots: GETTING STARTED: You can work with dat files without project (File -> Open file), but it's more powerful using project system because it provides access to more features. Follow this steps: 1) Create Project: See screenshot (Click to View) 3) Fill project options and press "Save": See screenshot (Click to View) See screenshot (Click to View) See screenshot (Click to View) See screenshot (Click to View) ![]() RE: LF Studio by wirwl - wirwl - 07-05-2011 Little update: 1) Remove non existing path to projects from "projects.txt" 2) Fix problem with loading "lf2.xshd" RE: LF Studio by wirwl - blow_fly98 - 07-05-2011 Could I suggest uploading these files onto a filehost? LFE's storage is not great, and there is a limit for (normal) members. >>Click here to check.<< RE: LF Studio by wirwl - YinYin - 07-05-2011 i will test this once you've got a visualizer working (: cant wait RE: LF Studio by wirwl - wirwl - 07-08-2011 What news?! 1) Released Lf Studio 0.1.2 (To Download see The first post in this topic) 2) Fix many bugs 3) Implemented plugin system! 4) Released The First plugin: "Multiline Find & Replace"(Click to watch Screenshot, To Download see The first post in this topic) 5) Redesigned icons in Projects Explorer The Next: 1) Fix another many bugs (pain) ![]() 2) Will create a plugin "Frame generator" Stripped the white colour. Hard for some people using a certain theme to read. ~ blow_fly98 RE: LF Studio by wirwl - Electric2Shock - 07-08-2011 Can you reduce the version of the .NET Framework? It requires .NET Framework 4 and I cant seem to find it. RE: LF Studio by wirwl - wirwl - 07-08-2011 Sorry I can't reduce the version of the .Net Framewrok. Net framework 4 (stand-alone) http://www.microsoft.com/download/en/details.aspx?id=17718 or Net framework 4 (web installer) http://www.microsoft.com/download/en/details.aspx?id=17851 RE: LF Studio by wirwl - wirwl - 07-12-2011 News: Updated plugin Multiline Find & Replace (Build 101) Fixed problem with infinity loop. Link to download: http://www.mediafire.com/?8pxnazf5j8xabqi RE: LF Studio by wirwl - Boop - 07-12-2011 how does one write his own plug-in for this? Can you release the source for the multiline find or at least some basic template? I want to try writing one ![]() RE: LF Studio by wirwl - wirwl - 07-12-2011 (07-12-2011, 02:48 PM)Lord Silva Wrote: how does one write his own plug-in for this? Can you release the source for the multiline find or at least some basic template? I want to try writing one Download this archive: http://www.mediafire.com/?jczdyk1lazc8lqb It include 1) Minimal Plugin without GUI 2) Minimal Plugin with Win Forms Window 3) Minimal Plugin with WPF Window You can open solution(projects) in Visual Studio 2010. If you want create plugin - describe your plugin. I'm try to help you in coding. P.S. This code you can use to access to active opened file (dat or txt), for example Code: DockingManager dm = (DockingManager)AppObjects.AppGrid.FindName("DockManager"); |