Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
/ *
Copyright ( c ) 2017 , Lars Brubaker , John Lewin
All rights reserved .
Redistribution and use in source and binary forms , with or without
modification , are permitted provided that the following conditions are met :
1. Redistributions of source code must retain the above copyright notice , this
list of conditions and the following disclaimer .
2. Redistributions in binary form must reproduce the above copyright notice ,
this list of conditions and the following disclaimer in the documentation
and / or other materials provided with the distribution .
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES
( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ;
LOSS OF USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies ,
either expressed or implied , of the FreeBSD Project .
* /
using System ;
using System.Collections.Generic ;
using System.Diagnostics ;
using System.IO ;
using System.Linq ;
using System.Threading.Tasks ;
using MatterHackers.Agg ;
using MatterHackers.Agg.UI ;
using MatterHackers.Localizations ;
using MatterHackers.MatterControl.DataStorage ;
using MatterHackers.MatterControl.PrinterCommunication ;
using MatterHackers.MatterControl.PrintQueue ;
using MatterHackers.MatterControl.SlicerConfiguration ;
2018-03-17 20:53:36 -07:00
using MatterHackers.MatterControl.DesignTools.Operations ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
using Newtonsoft.Json ;
2017-12-11 14:15:50 -08:00
using System.Collections.ObjectModel ;
2018-09-06 11:31:09 -07:00
using System.Runtime.CompilerServices ;
[assembly: InternalsVisibleTo("MatterControl.Tests")]
[assembly: InternalsVisibleTo("MatterControl.AutomationTests")]
[assembly: InternalsVisibleTo("CloudServices.Tests")]
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
namespace MatterHackers.MatterControl
{
2018-04-04 10:11:57 -07:00
using System.ComponentModel ;
2017-06-16 18:04:47 -07:00
using System.IO.Compression ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
using System.Net ;
using System.Reflection ;
2017-08-17 18:18:41 -07:00
using System.Text ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
using System.Threading ;
using Agg.Font ;
using Agg.Image ;
using CustomWidgets ;
2018-05-26 12:16:23 -07:00
using global : : MatterControl . Printing ;
2017-08-20 02:34:39 -07:00
using MatterHackers.Agg.Platform ;
2018-05-04 14:50:38 -07:00
using MatterHackers.Agg.VertexSource ;
2017-06-02 17:04:02 -07:00
using MatterHackers.DataConverters3D ;
2018-01-26 17:53:54 -08:00
using MatterHackers.DataConverters3D.UndoCommands ;
2017-06-16 18:04:47 -07:00
using MatterHackers.MatterControl.ConfigurationPage.PrintLeveling ;
2018-01-23 09:52:05 -08:00
using MatterHackers.MatterControl.DesignTools ;
2018-01-29 13:50:55 -08:00
using MatterHackers.MatterControl.DesignTools.Operations ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
using MatterHackers.MatterControl.Library ;
2017-06-01 18:19:37 -07:00
using MatterHackers.MatterControl.PartPreviewWindow ;
2017-10-17 09:40:56 -07:00
using MatterHackers.MatterControl.PartPreviewWindow.View3D ;
2017-10-18 14:56:10 -07:00
using MatterHackers.MatterControl.PrinterControls.PrinterConnections ;
2018-04-18 14:38:09 -07:00
using MatterHackers.MatterControl.SetupWizard ;
2018-02-26 17:48:15 -08:00
using MatterHackers.PolygonMesh ;
2018-08-13 18:39:09 -07:00
using MatterHackers.PolygonMesh.Processors ;
2018-02-26 17:48:15 -08:00
using MatterHackers.RenderOpenGl ;
2017-06-16 18:04:47 -07:00
using MatterHackers.SerialPortCommunication ;
2018-02-21 15:23:54 -08:00
using MatterHackers.VectorMath ;
2018-04-23 14:33:27 -07:00
using MatterHackers.VectorMath.TrackBall ;
2018-05-15 13:56:05 -07:00
using Newtonsoft.Json.Converters ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
using SettingsManagement ;
2018-05-15 13:56:05 -07:00
[JsonConverter(typeof(StringEnumConverter))]
public enum NamedTypeFace
{
Alfa_Slab ,
Audiowide ,
Bangers ,
Courgette ,
Damion ,
Fredoka ,
Great_Vibes ,
Liberation_Mono ,
Liberation_Sans ,
Liberation_Sans_Bold ,
Lobster ,
Pacifico ,
Poppins ,
Questrial ,
Righteous ,
Russo ,
Titan ,
Titillium ,
} ;
2017-12-16 13:56:59 -08:00
public class AppContext
{
/// <summary>
2018-03-26 16:54:36 -07:00
/// Native platform features
2017-12-16 13:56:59 -08:00
/// </summary>
public static INativePlatformFeatures Platform { get ; set ; }
2017-12-16 19:09:25 -08:00
2017-12-18 17:22:50 -08:00
public static bool IsLoading { get ; internal set ; } = true ;
2017-12-16 19:09:25 -08:00
/// <summary>
/// The root SystemWindow
/// </summary>
public static SystemWindow RootSystemWindow { get ; internal set ; }
2017-12-16 13:56:59 -08:00
}
2017-06-24 10:30:11 -07:00
public class ApplicationController
{
2018-06-30 23:26:57 -07:00
public HelpArticle HelpArticles { get ; set ; }
2018-05-16 12:06:32 -07:00
2018-03-26 16:54:36 -07:00
private Dictionary < Type , HashSet < IObject3DEditor > > objectEditorsByType ;
2018-04-07 12:17:23 -07:00
public ThemeConfig Theme { get ; set ; }
2017-06-24 10:30:11 -07:00
2018-04-12 08:42:10 -07:00
public ThemeConfig MenuTheme { get ; set ; }
2017-12-11 14:15:50 -08:00
public RunningTasksConfig Tasks { get ; set ; } = new RunningTasksConfig ( ) ;
2017-09-17 14:23:28 -07:00
// A list of printers which are open (i.e. displaying a tab) on this instance of MatterControl
2017-09-20 18:05:15 -07:00
public IEnumerable < PrinterConfig > ActivePrinters { get ; } = new List < PrinterConfig > ( ) ;
2017-09-17 14:23:28 -07:00
2017-12-20 18:25:12 -08:00
private static PrinterConfig emptyPrinter = new PrinterConfig ( PrinterSettings . Empty ) ;
2017-09-17 14:23:28 -07:00
2018-09-14 15:20:19 -07:00
public PopupMenu GetActionMenuForSceneItem ( IObject3D selectedItem , InteractiveScene scene , bool addInSubmenu )
2018-08-07 09:56:34 -07:00
{
var popupMenu = new PopupMenu ( ApplicationController . Instance . MenuTheme ) ;
2018-09-09 11:46:15 -07:00
var menuItem = popupMenu . CreateMenuItem ( "Rename" . Localize ( ) ) ;
2018-08-07 09:56:34 -07:00
menuItem . Click + = ( s , e ) = >
{
DialogWindow . Show (
new InputBoxPage (
"Rename Item" . Localize ( ) ,
"Name" . Localize ( ) ,
selectedItem . Name ,
"Enter New Name Here" . Localize ( ) ,
"Rename" . Localize ( ) ,
( newName ) = >
{
selectedItem . Name = newName ;
// TODO: Revise SelectedObjectPanel to sync name on model change
// editorSectionWidget.Text = newName;
} ) ) ;
} ;
popupMenu . CreateHorizontalLine ( ) ;
2018-09-14 15:20:19 -07:00
var selectedItemType = selectedItem . GetType ( ) ;
2018-08-07 09:56:34 -07:00
2018-09-14 15:20:19 -07:00
var menuTheme = ApplicationController . Instance . MenuTheme ;
2018-08-07 09:56:34 -07:00
2018-09-14 15:20:19 -07:00
if ( addInSubmenu )
{
2018-09-11 10:57:53 -07:00
popupMenu . CreateSubMenu ( "Modify" . Localize ( ) , ApplicationController . Instance . MenuTheme , ( modifyMenu ) = >
2018-08-07 09:56:34 -07:00
{
2018-09-11 10:57:53 -07:00
foreach ( var nodeOperation in ApplicationController . Instance . Graph . Operations )
2018-08-07 09:56:34 -07:00
{
2018-09-11 10:57:53 -07:00
foreach ( var type in nodeOperation . MappedTypes )
2018-08-07 09:56:34 -07:00
{
2018-09-11 10:57:53 -07:00
if ( type . IsAssignableFrom ( selectedItemType )
& & ( nodeOperation . IsVisible ? . Invoke ( selectedItem ) ! = false )
& & nodeOperation . IsEnabled ? . Invoke ( selectedItem ) ! = false )
2018-08-07 09:56:34 -07:00
{
2018-09-11 10:57:53 -07:00
var subMenuItem = modifyMenu . CreateMenuItem ( nodeOperation . Title , nodeOperation . IconCollector ? . Invoke ( menuTheme ) ) ;
subMenuItem . Click + = ( s2 , e2 ) = >
{
nodeOperation . Operation ( selectedItem , scene ) . ConfigureAwait ( false ) ;
} ;
}
2018-08-07 09:56:34 -07:00
}
}
2018-09-11 10:57:53 -07:00
} ) ;
2018-09-14 15:20:19 -07:00
}
else
{
foreach ( var nodeOperation in ApplicationController . Instance . Graph . Operations )
{
foreach ( var type in nodeOperation . MappedTypes )
{
if ( type . IsAssignableFrom ( selectedItemType )
& & ( nodeOperation . IsVisible ? . Invoke ( selectedItem ) ! = false )
& & nodeOperation . IsEnabled ? . Invoke ( selectedItem ) ! = false )
{
menuItem = popupMenu . CreateMenuItem ( nodeOperation . Title , nodeOperation . IconCollector ? . Invoke ( menuTheme ) ) ;
menuItem . Click + = ( s2 , e2 ) = >
{
nodeOperation . Operation ( selectedItem , scene ) . ConfigureAwait ( false ) ;
} ;
}
}
}
}
2018-08-07 09:56:34 -07:00
return popupMenu ;
}
2018-03-26 16:54:36 -07:00
// TODO: Any references to this property almost certainly need to be reconsidered. ActiveSliceSettings static references that assume a single printer
2017-09-20 18:05:15 -07:00
// selection are being redirected here. This allows us to break the dependency to the original statics and consolidates
// us down to a single point where code is making assumptions about the presence of a printer, printer counts, etc. If we previously checked for
2017-09-17 14:23:28 -07:00
// PrinterConnection.IsPrinterConnected, that could should be updated to iterate ActiverPrinters, checking each one and acting on each as it would
// have for the single case
2017-09-20 18:05:15 -07:00
public PrinterConfig ActivePrinter { get ; private set ; } = emptyPrinter ;
2017-06-24 08:32:09 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public Action RedeemDesignCode ;
public Action EnterShareCode ;
private static ApplicationController globalInstance ;
public RootedObjectEventHandler CloudSyncStatusChanged = new RootedObjectEventHandler ( ) ;
public RootedObjectEventHandler DoneReloadingAll = new RootedObjectEventHandler ( ) ;
public static Action SignInAction ;
public static Action SignOutAction ;
2017-09-15 23:13:23 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public static Action WebRequestFailed ;
public static Action WebRequestSucceeded ;
#if DEBUG
public const string EnvironmentName = "TestEnv_" ;
#else
public const string EnvironmentName = "" ;
#endif
2017-12-16 19:09:25 -08:00
public bool ApplicationExiting { get ; internal set ; } = false ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public static Func < string , Task < Dictionary < string , string > > > GetProfileHistory ;
2017-11-14 15:45:23 -08:00
public async Task SetActivePrinter ( PrinterConfig printer , bool allowChangedEvent = true )
2017-09-20 18:05:15 -07:00
{
2017-09-23 14:44:43 -07:00
var initialPrinter = this . ActivePrinter ;
if ( initialPrinter ? . Settings . ID ! = printer . Settings . ID )
{
2017-11-14 15:45:23 -08:00
// TODO: Consider if autosave is appropriate
if ( initialPrinter ! = emptyPrinter )
{
2018-02-13 17:00:23 -08:00
await initialPrinter . Bed . SaveChanges ( null , CancellationToken . None ) ;
2017-11-14 15:45:23 -08:00
}
2017-09-23 14:44:43 -07:00
// If we have an active printer, run Disable
if ( initialPrinter . Settings ! = PrinterSettings . Empty )
{
initialPrinter ? . Connection ? . Disable ( ) ;
}
2018-04-23 13:43:42 -07:00
// ActivePrinters is IEnumerable to force us to use SetActivePrinter until it's ingrained in our pattern
// Cast to list since it is one and we need to clear and add
if ( this . ActivePrinters is List < PrinterConfig > activePrinterList )
{
activePrinterList . Clear ( ) ;
activePrinterList . Add ( printer ) ;
this . ActivePrinter = printer ;
}
2017-09-23 14:44:43 -07:00
// TODO: Decide if non-printer contexts should prompt for a printer, if we should have a default printer, or get "ActiveTab printer" working
// HACK: short term solution to resolve printer reference for non-printer related contexts
DragDropData . Printer = printer ;
2017-12-18 17:22:50 -08:00
if ( ! AppContext . IsLoading )
2017-09-23 14:44:43 -07:00
{
// Fire printer changed event
}
BedSettings . SetMakeAndModel (
2018-03-26 16:54:36 -07:00
printer . Settings . GetValue ( SettingsKey . make ) ,
2017-09-23 14:44:43 -07:00
printer . Settings . GetValue ( SettingsKey . model ) ) ;
if ( allowChangedEvent )
{
ActiveSliceSettings . OnActivePrinterChanged ( null ) ;
}
2017-12-18 17:22:50 -08:00
if ( ! AppContext . IsLoading
2017-09-23 14:44:43 -07:00
& & printer . Settings . PrinterSelected
& & printer . Settings . GetValue < bool > ( SettingsKey . auto_connect ) )
{
UiThread . RunOnIdle ( ( ) = >
{
2018-01-06 12:00:14 -08:00
printer . Settings . printer . Connection . Connect ( ) ;
2017-09-23 14:44:43 -07:00
} , 2 ) ;
}
2018-06-26 11:06:32 -07:00
if ( this . Library ! = null )
{
this . Library . NotifyContainerChanged ( ) ;
}
2017-09-23 14:44:43 -07:00
}
}
2018-04-18 12:56:12 -07:00
public string GetFavIconUrl ( string oemName )
{
OemSettings . Instance . OemUrls . TryGetValue ( oemName , out string oemUrl ) ;
return "https://www.google.com/s2/favicons?domain=" + ( string . IsNullOrWhiteSpace ( oemUrl ) ? "www.matterhackers.com" : oemUrl ) ;
}
2017-11-14 15:45:23 -08:00
internal async Task ClearActivePrinter ( )
2017-09-23 14:44:43 -07:00
{
2017-11-14 15:45:23 -08:00
await this . SetActivePrinter ( emptyPrinter ) ;
2017-09-23 14:44:43 -07:00
}
2018-04-18 12:56:12 -07:00
2017-12-16 08:55:20 -08:00
public void LaunchBrowser ( string targetUri )
{
UiThread . RunOnIdle ( ( ) = >
{
2018-04-05 13:55:23 -07:00
if ( ! string . IsNullOrEmpty ( OemSettings . Instance . AffiliateCode )
2018-03-16 15:43:32 -07:00
& & targetUri . Contains ( "matterhackers.com" ) )
{
2018-04-05 13:55:23 -07:00
if ( targetUri . Contains ( "?" ) )
2018-03-16 15:43:32 -07:00
{
targetUri + = $"&aff={OemSettings.Instance.AffiliateCode}" ;
}
else
{
targetUri + = $"?aff={OemSettings.Instance.AffiliateCode}" ;
}
}
2017-12-16 08:55:20 -08:00
Process . Start ( targetUri ) ;
} ) ;
}
2017-09-23 14:44:43 -07:00
public void RefreshActiveInstance ( PrinterSettings updatedPrinterSettings )
{
ActivePrinter . SwapToSettings ( updatedPrinterSettings ) ;
/ *
// TODO: Should we rebroadcast settings changed events for each settings?
bool themeChanged = ActivePrinter . Settings . GetValue ( SettingsKey . active_theme_name ) ! = updatedProfile . GetValue ( SettingsKey . active_theme_name ) ;
ActiveSliceSettings . SettingChanged . CallEvents ( null , new StringEventArgs ( SettingsKey . printer_name ) ) ;
2017-09-23 09:19:32 -07:00
// TODO: Decide if non-printer contexts should prompt for a printer, if we should have a default printer, or get "ActiveTab printer" working
// HACK: short term solution to resolve printer reference for non-printer related contexts
DragDropData . Printer = printer ;
2017-09-23 14:44:43 -07:00
if ( themeChanged )
{
UiThread . RunOnIdle ( ActiveSliceSettings . SwitchToPrinterTheme ) ;
}
else
{
UiThread . RunOnIdle ( ApplicationController . Instance . ReloadAdvancedControlsPanel ) ;
} * /
2017-09-20 18:05:15 -07:00
}
2018-04-05 13:55:23 -07:00
public static Func < PrinterInfo , string , Task < PrinterSettings > > GetPrinterProfileAsync ;
public static Func < string , IProgress < ProgressStatus > , Task > SyncPrinterProfiles ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public static Func < Task < OemProfileDictionary > > GetPublicProfileList ;
public static Func < string , Task < PrinterSettings > > DownloadPublicProfileAsync ;
2018-06-17 12:22:33 -07:00
public SlicePresetsPage EditMaterialPresetsPage { get ; set ; }
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2018-06-17 12:22:33 -07:00
public SlicePresetsPage EditQualityPresetsWindow { get ; set ; }
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2017-12-17 00:00:41 -08:00
public GuiWidget MainView ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
private EventHandler unregisterEvents ;
private Dictionary < string , List < PrintItemAction > > registeredLibraryActions = new Dictionary < string , List < PrintItemAction > > ( ) ;
2018-04-09 15:17:05 -07:00
private List < SceneSelectionOperation > registeredSceneOperations ;
2018-07-12 09:22:28 -07:00
public ThumbnailsConfig Thumbnails { get ; }
2018-06-21 09:02:31 -07:00
2018-04-12 08:42:10 -07:00
private void RebuildSceneOperations ( ThemeConfig theme )
2017-09-18 17:57:06 -07:00
{
2018-04-09 15:17:05 -07:00
registeredSceneOperations = new List < SceneSelectionOperation > ( )
2017-10-13 15:16:14 -07:00
{
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-03-28 17:20:47 -07:00
{
2018-06-21 21:02:37 -07:00
OperationType = typeof ( GroupObject3D ) ,
2018-05-26 08:34:24 -07:00
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Group" . Localize ( ) ,
Action = ( scene ) = >
2018-03-28 17:20:47 -07:00
{
2018-04-09 15:17:05 -07:00
var selectedItem = scene . SelectedItem ;
scene . SelectedItem = null ;
2018-03-28 17:20:47 -07:00
2018-06-21 21:02:37 -07:00
var newGroup = new GroupObject3D ( ) ;
2018-04-09 15:17:05 -07:00
// When grouping items, move them to be centered on their bounding box
newGroup . Children . Modify ( ( gChildren ) = >
{
selectedItem . Clone ( ) . Children . Modify ( ( sChildren ) = >
2018-03-28 17:20:47 -07:00
{
2018-04-09 15:17:05 -07:00
var center = selectedItem . GetAxisAlignedBoundingBox ( ) . Center ;
2018-03-28 17:20:47 -07:00
2018-04-09 15:17:05 -07:00
foreach ( var child in sChildren )
{
child . Translate ( - center . X , - center . Y , 0 ) ;
gChildren . Add ( child ) ;
}
newGroup . Translate ( center . X , center . Y , 0 ) ;
} ) ;
2018-03-28 17:20:47 -07:00
} ) ;
2018-04-09 15:17:05 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( selectedItem . Children . ToList ( ) , new List < IObject3D > { newGroup } ) ) ;
2018-03-28 17:20:47 -07:00
2018-04-09 15:17:05 -07:00
newGroup . MakeNameNonColliding ( ) ;
2018-03-28 17:20:47 -07:00
2018-04-09 15:17:05 -07:00
scene . SelectedItem = newGroup ;
} ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null
2018-06-21 21:02:37 -07:00
& & scene . SelectedItem is SelectionGroupObject3D
2018-04-09 15:17:05 -07:00
& & scene . SelectedItem . Children . Count > 1 ,
Icon = AggContext . StaticData . LoadIcon ( "group.png" , 16 , 16 ) . SetPreMultiply ( ) ,
2018-03-28 17:20:47 -07:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
{
TitleResolver = ( ) = > "Ungroup" . Localize ( ) ,
Action = ( scene ) = > scene . UngroupSelection ( ) ,
2018-09-22 17:53:15 -07:00
IsEnabled = ( scene ) = >
{
var selectedItem = scene . SelectedItem ;
if ( selectedItem ! = null )
{
var hasSingleMesh = selectedItem . Mesh ! = null & & selectedItem . Children . Count = = 0 ;
return hasSingleMesh | | selectedItem is GroupObject3D ;
}
return false ;
} ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "ungroup.png" , 16 , 16 ) . SetPreMultiply ( ) ,
} ,
new SceneSelectionSeparator ( ) ,
new SceneSelectionOperation ( )
{
TitleResolver = ( ) = > "Duplicate" . Localize ( ) ,
Action = ( scene ) = > scene . DuplicateItem ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "duplicate.png" ) . SetPreMultiply ( ) ,
} ,
new SceneSelectionOperation ( )
2018-02-13 13:42:57 -08:00
{
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Remove" . Localize ( ) ,
Action = ( scene ) = > scene . DeleteSelection ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "remove.png" ) . SetPreMultiply ( ) ,
} ,
new SceneSelectionSeparator ( ) ,
new SceneSelectionOperation ( )
{
2018-06-21 21:02:37 -07:00
OperationType = typeof ( AlignObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Align" . Localize ( ) ,
Action = ( scene ) = >
2018-02-13 13:42:57 -08:00
{
2018-06-20 17:16:38 -07:00
var selectedItem = scene . SelectedItem ;
2018-06-21 21:02:37 -07:00
var align = new AlignObject3D ( ) ;
2018-06-20 17:16:38 -07:00
align . AddSelectionAsChildren ( scene , selectedItem ) ;
align . Invalidate ( new InvalidateArgs ( align , InvalidateType . Properties , null ) ) ;
2018-04-09 15:17:05 -07:00
} ,
2018-04-12 08:42:10 -07:00
Icon = AggContext . StaticData . LoadIcon ( "align_left.png" , 16 , 16 , theme . InvertIcons ) . SetPreMultiply ( ) ,
2018-06-21 21:02:37 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem is SelectionGroupObject3D ,
2018-02-13 13:42:57 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2017-10-17 09:40:56 -07:00
{
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Lay Flat" . Localize ( ) ,
Action = ( scene ) = >
2017-10-23 14:26:10 -07:00
{
2018-07-13 06:55:00 -07:00
var selectedItem = scene . SelectedItem ;
if ( selectedItem ! = null )
2018-04-09 15:17:05 -07:00
{
2018-07-13 06:55:00 -07:00
scene . MakeLowestFaceFlat ( selectedItem ) ;
2018-04-09 15:17:05 -07:00
}
} ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "lay_flat.png" , 16 , 16 ) . SetPreMultiply ( ) ,
2018-01-09 15:47:00 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-01-18 07:33:12 -08:00
{
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Make Support" . Localize ( ) ,
Action = ( scene ) = >
2018-01-18 07:33:12 -08:00
{
2018-04-09 15:17:05 -07:00
if ( scene . SelectedItem ! = null
2018-05-29 17:46:59 -07:00
& & ! scene . SelectedItem . VisibleMeshes ( ) . All ( i = > i . OutputType = = PrintOutputTypes . Support ) )
2018-04-09 15:17:05 -07:00
{
scene . UndoBuffer . AddAndDo ( new MakeSupport ( scene . SelectedItem ) ) ;
}
} ,
Icon = AggContext . StaticData . LoadIcon ( "support.png" ) . SetPreMultiply ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-01-18 07:33:12 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionSeparator ( ) ,
new SceneSelectionOperation ( )
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( CombineObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Combine" . Localize ( ) ,
2018-05-25 14:52:23 -07:00
Action = ( scene ) = > new CombineObject3D ( ) . WrapSelectedItemAndSelect ( scene ) ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "combine.png" ) . SetPreMultiply ( ) ,
2018-06-21 21:02:37 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem is SelectionGroupObject3D ,
2018-04-09 15:17:05 -07:00
} ,
new SceneSelectionOperation ( )
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( SubtractObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Subtract" . Localize ( ) ,
2018-05-25 14:52:23 -07:00
Action = ( scene ) = > new SubtractObject3D ( ) . WrapSelectedItemAndSelect ( scene ) ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "subtract.png" ) . SetPreMultiply ( ) ,
2018-06-21 21:02:37 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem is SelectionGroupObject3D ,
2018-04-09 15:17:05 -07:00
} ,
new SceneSelectionOperation ( )
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( IntersectionObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Intersect" . Localize ( ) ,
2018-05-25 14:52:23 -07:00
Action = ( scene ) = > new IntersectionObject3D ( ) . WrapSelectedItemAndSelect ( scene ) ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "intersect.png" ) ,
2018-06-21 21:02:37 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem is SelectionGroupObject3D ,
2018-04-09 15:17:05 -07:00
} ,
new SceneSelectionOperation ( )
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( SubtractAndReplaceObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Subtract & Replace" . Localize ( ) ,
2018-05-25 14:52:23 -07:00
Action = ( scene ) = > new SubtractAndReplaceObject3D ( ) . WrapSelectedItemAndSelect ( scene ) ,
2018-04-09 15:17:05 -07:00
Icon = AggContext . StaticData . LoadIcon ( "subtract_and_replace.png" ) . SetPreMultiply ( ) ,
2018-06-21 21:02:37 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem is SelectionGroupObject3D ,
2018-04-09 15:17:05 -07:00
} ,
new SceneSelectionSeparator ( ) ,
new SceneSelectionOperation ( )
2018-01-26 17:53:54 -08:00
{
2018-06-21 21:02:37 -07:00
OperationType = typeof ( ArrayLinearObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Linear Array" . Localize ( ) ,
Action = ( scene ) = >
2018-02-07 15:57:27 -08:00
{
2018-06-21 21:02:37 -07:00
var array = new ArrayLinearObject3D ( ) ;
2018-06-20 17:16:38 -07:00
array . AddSelectionAsChildren ( scene , scene . SelectedItem ) ;
array . Invalidate ( new InvalidateArgs ( array , InvalidateType . Properties , null ) ) ;
2018-04-09 15:17:05 -07:00
} ,
Icon = AggContext . StaticData . LoadIcon ( "array_linear.png" ) . SetPreMultiply ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null & & ! ( scene . SelectedItem is SelectionGroupObject3D ) ,
2018-01-26 17:53:54 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-02-09 18:10:41 -08:00
{
2018-06-21 21:02:37 -07:00
OperationType = typeof ( ArrayRadialObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Radial Array" . Localize ( ) ,
Action = ( scene ) = >
2018-02-09 18:10:41 -08:00
{
2018-06-21 21:02:37 -07:00
var array = new ArrayRadialObject3D ( ) ;
2018-06-20 17:16:38 -07:00
array . AddSelectionAsChildren ( scene , scene . SelectedItem ) ;
array . Invalidate ( new InvalidateArgs ( array , InvalidateType . Properties , null ) ) ;
2018-04-09 15:17:05 -07:00
} ,
Icon = AggContext . StaticData . LoadIcon ( "array_radial.png" ) . SetPreMultiply ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null & & ! ( scene . SelectedItem is SelectionGroupObject3D ) ,
2018-02-09 18:10:41 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-02-09 18:10:41 -08:00
{
2018-06-21 21:02:37 -07:00
OperationType = typeof ( ArrayAdvancedObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Advanced Array" . Localize ( ) ,
Action = ( scene ) = >
2018-02-09 18:10:41 -08:00
{
2018-06-21 21:02:37 -07:00
var array = new ArrayAdvancedObject3D ( ) ;
2018-06-20 17:16:38 -07:00
array . AddSelectionAsChildren ( scene , scene . SelectedItem ) ;
array . Invalidate ( new InvalidateArgs ( array , InvalidateType . Properties , null ) ) ;
2018-04-09 15:17:05 -07:00
} ,
Icon = AggContext . StaticData . LoadIcon ( "array_advanced.png" ) . SetPreMultiply ( ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null & & ! ( scene . SelectedItem is SelectionGroupObject3D ) ,
2018-02-09 18:10:41 -08:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionSeparator ( ) ,
new SceneSelectionOperation ( )
2018-04-01 16:06:31 -07:00
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( PinchObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Pinch" . Localize ( ) ,
Action = ( scene ) = >
{
var pinch = new PinchObject3D ( ) ;
2018-05-25 14:52:23 -07:00
pinch . WrapSelectedItemAndSelect ( scene ) ;
2018-04-09 15:17:05 -07:00
} ,
2018-04-12 08:42:10 -07:00
Icon = AggContext . StaticData . LoadIcon ( "pinch.png" , 16 , 16 , theme . InvertIcons ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-04-01 16:06:31 -07:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-04-02 14:15:27 -07:00
{
2018-05-22 22:06:20 -07:00
OperationType = typeof ( CurveObject3D ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Curve" . Localize ( ) ,
Action = ( scene ) = >
{
var curve = new CurveObject3D ( ) ;
2018-05-25 14:52:23 -07:00
curve . WrapSelectedItemAndSelect ( scene ) ;
2018-04-09 15:17:05 -07:00
} ,
2018-04-12 08:42:10 -07:00
Icon = AggContext . StaticData . LoadIcon ( "curve.png" , 16 , 16 , theme . InvertIcons ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null ,
2018-04-02 14:15:27 -07:00
} ,
2018-04-09 15:17:05 -07:00
new SceneSelectionOperation ( )
2018-03-17 20:53:36 -07:00
{
2018-07-03 08:32:02 -07:00
OperationType = typeof ( FitToBoundsObject3D_2 ) ,
2018-04-09 15:17:05 -07:00
TitleResolver = ( ) = > "Fit to Bounds" . Localize ( ) ,
Action = ( scene ) = >
{
var selectedItem = scene . SelectedItem ;
scene . SelectedItem = null ;
2018-07-03 08:32:02 -07:00
var fit = FitToBoundsObject3D_2 . Create ( selectedItem . Clone ( ) ) ;
2018-04-09 15:17:05 -07:00
fit . MakeNameNonColliding ( ) ;
2018-03-17 20:53:36 -07:00
2018-04-09 15:17:05 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( new List < IObject3D > { selectedItem } , new List < IObject3D > { fit } ) ) ;
scene . SelectedItem = fit ;
} ,
2018-05-17 16:01:26 -07:00
Icon = AggContext . StaticData . LoadIcon ( "fit.png" , 16 , 16 , theme . InvertIcons ) ,
2018-07-13 06:55:00 -07:00
IsEnabled = ( scene ) = > scene . SelectedItem ! = null & & ! ( scene . SelectedItem is SelectionGroupObject3D ) ,
2018-03-17 20:53:36 -07:00
} ,
2018-04-09 15:17:05 -07:00
} ;
2018-06-21 09:56:52 -07:00
var operationIconsByType = new Dictionary < Type , ImageBuffer > ( ) ;
2018-05-22 22:06:20 -07:00
2018-06-21 09:56:52 -07:00
foreach ( var operation in registeredSceneOperations )
2018-05-22 22:06:20 -07:00
{
if ( operation . OperationType ! = null )
{
2018-06-21 09:56:52 -07:00
operationIconsByType . Add ( operation . OperationType , operation . Icon ) ;
2018-05-22 22:06:20 -07:00
}
}
2018-06-21 09:56:52 -07:00
// TODO: Use custom selection group icon if reusing group icon seems incorrect
//
// Explicitly register SelectionGroup icon
2018-06-21 21:02:37 -07:00
if ( operationIconsByType . TryGetValue ( typeof ( GroupObject3D ) , out ImageBuffer groupIcon ) )
2018-06-21 09:56:52 -07:00
{
2018-06-21 21:02:37 -07:00
operationIconsByType . Add ( typeof ( SelectionGroupObject3D ) , groupIcon ) ;
2018-06-21 09:56:52 -07:00
}
this . Thumbnails . OperationIcons = operationIconsByType ;
2018-07-10 15:34:08 -07:00
operationIconsByType . Add ( typeof ( ImageObject3D ) , AggContext . StaticData . LoadIcon ( "140.png" , 16 , 16 , theme . InvertIcons ) ) ;
2018-04-09 15:17:05 -07:00
}
2017-09-18 17:57:06 -07:00
2018-09-27 16:59:42 -07:00
public void ShowApplicationHelp ( )
{
UiThread . RunOnIdle ( ( ) = >
{
DialogWindow . Show ( new HelpPage ( "AllGuides" ) ) ;
} ) ;
}
public void ShowAboutPage ( )
{
UiThread . RunOnIdle ( ( ) = >
{
DialogWindow . Show < AboutPage > ( ) ;
} ) ;
}
2018-05-04 14:50:38 -07:00
public ImageSequence GetProcessingSequence ( Color color )
{
int size = ( int ) Math . Round ( 80 * GuiWidget . DeviceScale ) ;
double radius = size / 8.0 ;
var workingAnimation = new ImageSequence ( ) ;
var frameCount = 30.0 ;
var strokeWidth = 4 * GuiWidget . DeviceScale ;
2018-07-13 16:13:53 -07:00
2018-05-15 13:56:05 -07:00
for ( int i = 0 ; i < frameCount ; i + + )
2018-05-04 14:50:38 -07:00
{
var frame = new ImageBuffer ( size , size ) ;
var graphics = frame . NewGraphics2D ( ) ;
graphics . Render ( new Stroke ( new Arc ( frame . Width / 2 , frame . Height / 2 ,
size / 4 - strokeWidth / 2 , size / 4 - strokeWidth / 2 ,
MathHelper . Tau / frameCount * i ,
MathHelper . Tau / 4 + MathHelper . Tau / frameCount * i ) , strokeWidth ) , color ) ;
workingAnimation . AddImage ( frame ) ;
}
return workingAnimation ;
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
static int applicationInstanceCount = 0 ;
public static int ApplicationInstanceCount
{
get
{
if ( applicationInstanceCount = = 0 )
{
Assembly mcAssembly = Assembly . GetEntryAssembly ( ) ;
if ( mcAssembly ! = null )
{
string applicationName = Path . GetFileNameWithoutExtension ( mcAssembly . Location ) . ToUpper ( ) ;
Process [ ] p1 = Process . GetProcesses ( ) ;
foreach ( System . Diagnostics . Process pro in p1 )
{
try
{
if ( pro ? . ProcessName ! = null
& & pro . ProcessName . ToUpper ( ) . Contains ( applicationName ) )
{
applicationInstanceCount + + ;
}
}
catch
{
}
}
}
}
return applicationInstanceCount ;
}
}
public LibraryConfig Library { get ; }
2018-01-30 11:50:22 -08:00
public GraphConfig Graph { get ; }
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
private void InitializeLibrary ( )
{
if ( Directory . Exists ( ApplicationDataStorage . Instance . DownloadsDirectory ) )
{
2018-01-15 12:38:43 -08:00
this . Library . RegisterContainer (
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
new DynamicContainerLink (
2017-12-04 14:08:54 -08:00
( ) = > "Downloads" . Localize ( ) ,
2017-12-15 14:55:10 -08:00
AggContext . StaticData . LoadIcon ( Path . Combine ( "FileDialog" , "download_folder.png" ) ) ,
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
( ) = > new FileSystemContainer ( ApplicationDataStorage . Instance . DownloadsDirectory )
{
UseIncrementedNameDuringTypeChange = true
} ) ) ;
}
2018-05-03 23:32:17 -07:00
this . Library . LibraryCollectionContainer = new LibraryCollectionContainer ( ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2018-01-15 12:38:43 -08:00
this . Library . RegisterContainer (
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
new DynamicContainerLink (
2018-05-03 23:32:17 -07:00
( ) = > "Library" . Localize ( ) ,
AggContext . StaticData . LoadIcon ( Path . Combine ( "FileDialog" , "library_folder.png" ) ) ,
( ) = > this . Library . LibraryCollectionContainer ) ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
if ( File . Exists ( ApplicationDataStorage . Instance . CustomLibraryFoldersPath ) )
{
// Add each path defined in the CustomLibraryFolders file as a new FileSystemContainerItem
foreach ( string directory in File . ReadLines ( ApplicationDataStorage . Instance . CustomLibraryFoldersPath ) )
{
2017-12-15 14:55:10 -08:00
//if (Directory.Exists(directory))
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-01-15 12:38:43 -08:00
this . Library . RegisterContainer (
2017-06-03 15:11:12 -07:00
new FileSystemContainer . DirectoryContainerLink ( directory )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
UseIncrementedNameDuringTypeChange = true
} ) ;
}
}
}
2018-01-15 12:38:43 -08:00
this . Library . RegisterContainer (
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
new DynamicContainerLink (
2017-12-04 14:08:54 -08:00
( ) = > "SD Card" . Localize ( ) ,
2017-12-15 14:55:10 -08:00
AggContext . StaticData . LoadIcon ( Path . Combine ( "FileDialog" , "sd_folder.png" ) ) ,
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
( ) = > new SDCardContainer ( ) ,
( ) = >
{
2017-09-17 14:23:28 -07:00
var printer = this . ActivePrinter ;
2018-01-30 18:04:00 -08:00
return printer . Settings . GetValue < bool > ( SettingsKey . has_sd_card_reader ) ;
2017-07-31 22:16:15 -07:00
} )
{
IsReadOnly = true
} ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2017-11-14 14:15:34 -08:00
this . Library . PlatingHistory = new PlatingHistoryContainer ( ) ;
2018-04-29 11:08:09 -07:00
this . Library . PartHistory = new PartHistoryContainer ( ) ;
2018-01-15 12:38:43 -08:00
this . Library . RegisterContainer (
2017-11-14 14:15:34 -08:00
new DynamicContainerLink (
2018-04-29 11:08:09 -07:00
( ) = > "History" . Localize ( ) ,
AggContext . StaticData . LoadIcon ( Path . Combine ( "FileDialog" , "history_folder.png" ) ) ,
( ) = > new RootHistoryContainer ( ) ) ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-09-22 18:59:42 -07:00
public static IObject3D SelectionAsSingleClone ( IObject3D selection )
{
IEnumerable < IObject3D > items = new [ ] { selection } ;
// If SelectionGroup, operate on Children instead
if ( selection is SelectionGroupObject3D )
{
items = selection . Children ;
var group = new GroupObject3D ( ) ;
group . Children . Modify ( children = >
{
children . AddRange ( items . Select ( o = > o . Clone ( ) ) ) ;
} ) ;
return group ;
}
return selection . Clone ( ) ;
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public ApplicationController ( )
{
2018-04-07 12:17:23 -07:00
// Initialize the AppContext theme object which will sync its content with Agg ActiveTheme changes
this . Theme = new ThemeConfig ( ) ;
2018-07-12 09:22:28 -07:00
this . Thumbnails = new ThumbnailsConfig ( this . Theme ) ;
2018-04-12 08:42:10 -07:00
this . MenuTheme = new ThemeConfig ( ) ;
2018-04-07 12:17:23 -07:00
2018-06-30 23:26:57 -07:00
HelpArticle helpArticle = null ;
2018-06-22 17:01:20 -07:00
2018-06-30 23:26:57 -07:00
string helpPath = Path . Combine ( "OEMSettings" , "toc.json" ) ;
if ( AggContext . StaticData . FileExists ( helpPath ) )
2018-06-22 17:01:20 -07:00
{
try
{
2018-06-30 23:26:57 -07:00
helpArticle = JsonConvert . DeserializeObject < HelpArticle > ( AggContext . StaticData . ReadAllText ( helpPath ) ) ;
2018-06-22 17:01:20 -07:00
}
catch { }
}
2018-06-30 23:26:57 -07:00
this . HelpArticles = helpArticle ? ? new HelpArticle ( ) ;
2018-06-22 17:01:20 -07:00
2018-04-09 16:59:17 -07:00
ActiveTheme . ThemeChanged . RegisterEvent ( ( s , e ) = >
2018-04-07 12:17:23 -07:00
{
2018-05-08 17:04:28 -07:00
ChangeToTheme ( ActiveTheme . Instance ) ;
2018-04-07 12:17:23 -07:00
} , ref unregisterEvents ) ;
2018-05-08 17:04:28 -07:00
this . ChangeToTheme ( ActiveTheme . Instance ) ;
2018-04-07 12:17:23 -07:00
2018-02-06 22:27:46 -08:00
Object3D . AssetsPath = Path . Combine ( ApplicationDataStorage . Instance . ApplicationLibraryDataPath , "Assets" ) ;
2018-08-13 18:39:09 -07:00
using ( var meshSteam = AggContext . StaticData . OpenStream ( Path . Combine ( "Stls" , "missing.stl" ) ) )
{
Object3D . FileMissingMesh = StlProcessing . Load ( meshSteam , CancellationToken . None ) ;
}
2017-11-10 23:03:48 -08:00
ScrollBar . DefaultMargin = new BorderDouble ( right : 1 ) ;
ScrollBar . ScrollBarWidth = 8 * GuiWidget . DeviceScale ;
ScrollBar . GrowThumbBy = 2 ;
2017-12-16 13:56:59 -08:00
// Initialize statics
2017-10-31 11:43:25 -07:00
DefaultThumbBackground . DefaultBackgroundColor = Color . Transparent ;
2017-07-12 14:47:01 -07:00
Object3D . AssetsPath = ApplicationDataStorage . Instance . LibraryAssetsPath ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
this . Library = new LibraryConfig ( ) ;
2018-07-10 15:34:08 -07:00
this . Graph = new GraphConfig ( this ) ;
2017-11-03 13:43:31 -07:00
this . Library . ContentProviders . Add ( new [ ] { "stl" , "obj" , "amf" , "mcx" } , new MeshContentProvider ( ) ) ;
2017-06-21 07:41:12 -07:00
this . Library . ContentProviders . Add ( "gcode" , new GCodeContentProvider ( ) ) ;
2018-06-06 15:46:30 -07:00
this . Library . ContentProviders . Add ( new [ ] { "png" , "gif" , "jpg" , "jpeg" } , new ImageContentProvider ( ) ) ;
this . Graph . RegisterOperation (
typeof ( ImageObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( ImageToPathObject3D ) ,
2018-06-06 15:46:30 -07:00
"Image to Path" . Localize ( ) ,
( sceneItem , scene ) = >
{
if ( sceneItem is IObject3D imageObject )
{
2018-06-21 21:02:37 -07:00
var path = new ImageToPathObject3D ( ) ;
2018-06-06 15:46:30 -07:00
sceneItem . WrapWith ( path , scene ) ;
2018-06-20 17:16:38 -07:00
path . Invalidate ( new InvalidateArgs ( path , InvalidateType . Properties , null ) ) ;
2018-06-06 15:46:30 -07:00
}
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "noun_479927.png" , theme . InvertIcons ) ) ;
2018-06-06 15:46:30 -07:00
2018-07-06 07:10:39 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( TranslateObject3D ) ,
2018-07-06 07:10:39 -07:00
"Translate" . Localize ( ) ,
( sceneItem , scene ) = >
{
var selectedItem = scene . SelectedItem ;
2018-09-22 18:59:42 -07:00
var replaceItems = ( selectedItem is SelectionGroupObject3D ) ? selectedItem . Children . ToList ( ) : new List < IObject3D > { selectedItem } ;
2018-07-06 07:10:39 -07:00
scene . SelectedItem = null ;
2018-09-22 18:59:42 -07:00
var selectedClone = SelectionAsSingleClone ( selectedItem ) ;
var tranlate = TranslateObject3D . Create ( selectedClone ) ;
tranlate . MakeNameNonColliding ( ) ;
2018-07-06 07:10:39 -07:00
2018-09-22 18:59:42 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( replaceItems , new List < IObject3D > { tranlate } ) ) ;
scene . SelectedItem = tranlate ;
2018-07-06 07:10:39 -07:00
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( Path . Combine ( "ViewTransformControls" , "translate.png" ) , 16 , 16 , theme . InvertIcons ) ) ;
2018-07-06 07:10:39 -07:00
2018-06-26 15:54:05 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( RotateObject3D_2 ) ,
2018-06-26 15:54:05 -07:00
"Rotate" . Localize ( ) ,
( sceneItem , scene ) = >
{
2018-07-01 20:53:42 -07:00
var selectedItem = scene . SelectedItem ;
2018-09-22 18:59:42 -07:00
var replaceItems = ( selectedItem is SelectionGroupObject3D ) ? selectedItem . Children . ToList ( ) : new List < IObject3D > { selectedItem } ;
2018-07-01 20:53:42 -07:00
scene . SelectedItem = null ;
2018-09-22 18:59:42 -07:00
var selectedClone = SelectionAsSingleClone ( selectedItem ) ;
var rotate = new RotateObject3D_2 ( selectedClone ) ;
2018-07-01 20:53:42 -07:00
rotate . MakeNameNonColliding ( ) ;
2018-09-22 18:59:42 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( replaceItems , new List < IObject3D > { rotate } ) ) ;
2018-07-01 20:53:42 -07:00
scene . SelectedItem = rotate ;
2018-06-26 15:54:05 -07:00
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( Path . Combine ( "ViewTransformControls" , "rotate.png" ) , 16 , 16 , theme . InvertIcons ) ) ;
2018-06-26 15:54:05 -07:00
2018-08-01 18:05:04 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
2018-08-02 15:13:45 -07:00
typeof ( ComponentObject3D ) ,
2018-08-01 18:05:04 -07:00
"Make Component" . Localize ( ) ,
( sceneItem , scene ) = >
{
2018-08-02 15:45:31 -07:00
IEnumerable < IObject3D > items = new [ ] { sceneItem } ;
// If SelectionGroup, operate on Children instead
if ( sceneItem is SelectionGroupObject3D )
{
items = sceneItem . Children ;
}
// Dump selection forcing collapse of selection group
2018-08-01 18:05:04 -07:00
scene . SelectedItem = null ;
2018-08-02 15:45:31 -07:00
var component = new ComponentObject3D
{
Name = "New Component" ,
Finalized = false
} ;
// Copy an selected item into the component as a clone
component . Children . Modify ( children = >
{
children . AddRange ( items . Select ( o = > o . Clone ( ) ) ) ;
} ) ;
2018-08-01 18:05:04 -07:00
component . MakeNameNonColliding ( ) ;
2018-08-02 15:45:31 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( items , new [ ] { component } ) ) ;
2018-08-01 18:05:04 -07:00
scene . SelectedItem = component ;
return Task . CompletedTask ;
} ,
isVisible : ( sceneItem ) = >
{
2018-08-06 12:21:44 -07:00
return sceneItem . Parent ! = null
& & sceneItem . Parent . Parent = = null
2018-08-02 15:13:45 -07:00
& & sceneItem . DescendantsAndSelf ( ) . All ( d = > ! ( d is ComponentObject3D ) ) ;
} ,
2018-08-01 18:05:04 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "scale_32x32.png" , 16 , 16 , theme . InvertIcons ) ) ;
2018-08-03 12:20:56 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
typeof ( ComponentObject3D ) ,
"Edit Component" . Localize ( ) ,
( sceneItem , scene ) = >
{
if ( sceneItem is ComponentObject3D componentObject )
{
// Enable editing mode
componentObject . Finalized = false ;
// Force editor rebuild
scene . SelectedItem = null ;
scene . SelectedItem = componentObject ;
}
return Task . CompletedTask ;
} ,
isVisible : ( sceneItem ) = >
{
2018-08-06 12:21:44 -07:00
return sceneItem . Parent ! = null
& & sceneItem . Parent . Parent = = null
2018-08-03 12:20:56 -07:00
& & sceneItem is ComponentObject3D componentObject
& & componentObject . Finalized ;
} ,
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "scale_32x32.png" , 16 , 16 , theme . InvertIcons ) ) ;
2018-08-01 18:05:04 -07:00
2018-07-06 17:11:33 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( ScaleObject3D ) ,
2018-07-06 17:11:33 -07:00
"Scale" . Localize ( ) ,
( sceneItem , scene ) = >
{
var selectedItem = scene . SelectedItem ;
2018-09-22 18:59:42 -07:00
var replaceItems = ( selectedItem is SelectionGroupObject3D ) ? selectedItem . Children . ToList ( ) : new List < IObject3D > { selectedItem } ;
2018-07-06 17:11:33 -07:00
scene . SelectedItem = null ;
2018-09-22 18:59:42 -07:00
var selectedClone = SelectionAsSingleClone ( selectedItem ) ;
var scale = new ScaleObject3D ( selectedClone ) ;
2018-07-06 17:11:33 -07:00
scale . MakeNameNonColliding ( ) ;
2018-09-22 18:59:42 -07:00
scene . UndoBuffer . AddAndDo ( new ReplaceCommand ( replaceItems , new List < IObject3D > { scale } ) ) ;
2018-07-06 17:11:33 -07:00
scene . SelectedItem = scale ;
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "scale_32x32.png" , 16 , 16 , theme . InvertIcons ) ) ;
2018-07-06 17:11:33 -07:00
this . Graph . RegisterOperation (
typeof ( IObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( MirrorObject3D ) ,
2018-07-06 17:11:33 -07:00
"Mirror" . Localize ( ) ,
( sceneItem , scene ) = >
{
var mirror = new MirrorObject3D ( ) ;
mirror . WrapSelectedItemAndSelect ( scene ) ;
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "mirror_32x32.png" , 16 , 16 , theme . InvertIcons ) ) ;
2018-07-06 17:11:33 -07:00
2018-06-06 15:46:30 -07:00
this . Graph . RegisterOperation (
typeof ( IPathObject ) ,
2018-07-10 15:34:08 -07:00
typeof ( LinearExtrudeObject3D ) ,
2018-06-06 15:46:30 -07:00
"Linear Extrude" . Localize ( ) ,
( sceneItem , scene ) = >
{
if ( sceneItem is IPathObject imageObject )
{
2018-06-21 21:02:37 -07:00
var extrude = new LinearExtrudeObject3D ( ) ;
2018-06-20 17:16:38 -07:00
sceneItem . WrapWith ( extrude , scene ) ;
extrude . Invalidate ( new InvalidateArgs ( extrude , InvalidateType . Properties , null ) ) ;
2018-06-06 15:46:30 -07:00
}
return Task . CompletedTask ;
} ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "noun_84751.png" , theme . InvertIcons ) ) ;
2018-06-06 15:46:30 -07:00
this . Graph . RegisterOperation (
typeof ( IPathObject ) ,
2018-07-10 15:34:08 -07:00
typeof ( SmoothPathObject3D ) ,
2018-06-06 15:46:30 -07:00
"Smooth Path" . Localize ( ) ,
( sceneItem , scene ) = >
{
if ( sceneItem is IPathObject imageObject )
{
2018-06-21 21:02:37 -07:00
var smoothPath = new SmoothPathObject3D ( ) ;
2018-06-06 15:46:30 -07:00
sceneItem . WrapWith ( smoothPath , scene ) ;
2018-06-20 17:16:38 -07:00
smoothPath . Invalidate ( new InvalidateArgs ( smoothPath , InvalidateType . Properties , null ) ) ;
2018-06-06 15:46:30 -07:00
}
return Task . CompletedTask ;
} ,
2018-08-08 07:49:39 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "noun_simplify_340976_000000.png" , 16 , 16 , theme . InvertIcons ) ) ;
this . Graph . RegisterOperation (
typeof ( IPathObject ) ,
typeof ( InflatePathObject3D ) ,
"Inflate Path" . Localize ( ) ,
( sceneItem , scene ) = >
{
if ( sceneItem is IPathObject imageObject )
{
var inflatePath = new InflatePathObject3D ( ) ;
sceneItem . WrapWith ( inflatePath , scene ) ;
inflatePath . Invalidate ( new InvalidateArgs ( inflatePath , InvalidateType . Properties , null ) ) ;
}
return Task . CompletedTask ;
} ,
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "noun_expand_1823853_000000.png" , 16 , 16 , theme . InvertIcons ) ) ;
2017-06-21 07:41:12 -07:00
2018-06-06 18:18:33 -07:00
this . Graph . RegisterOperation (
2018-06-07 14:20:39 -07:00
typeof ( IObject3D ) ,
2018-07-10 15:34:08 -07:00
typeof ( BaseObject3D ) ,
2018-06-06 18:18:33 -07:00
"Add Base" . Localize ( ) ,
2018-06-07 14:20:39 -07:00
( item , scene ) = >
2018-06-06 18:18:33 -07:00
{
2018-06-15 14:37:07 -07:00
bool wasSelected = scene . SelectedItem = = item ;
2018-06-07 14:20:39 -07:00
2018-06-15 14:37:07 -07:00
var newChild = item . Clone ( ) ;
var baseMesh = new BaseObject3D ( )
{
Matrix = newChild . Matrix
} ;
newChild . Matrix = Matrix4X4 . Identity ;
baseMesh . Children . Add ( newChild ) ;
2018-06-20 17:16:38 -07:00
baseMesh . Invalidate ( new InvalidateArgs ( baseMesh , InvalidateType . Properties , null ) ) ;
2018-06-15 14:37:07 -07:00
scene . UndoBuffer . AddAndDo (
new ReplaceCommand (
new List < IObject3D > { item } ,
new List < IObject3D > { baseMesh } ) ) ;
if ( wasSelected )
{
scene . SelectedItem = baseMesh ;
2018-06-06 18:18:33 -07:00
}
return Task . CompletedTask ;
} ,
2018-06-23 14:18:04 -07:00
isVisible : ( sceneItem ) = > sceneItem . Children . Any ( ( i ) = > i is IPathObject ) ,
2018-07-10 15:34:08 -07:00
iconCollector : ( theme ) = > AggContext . StaticData . LoadIcon ( "noun_55060.png" , theme . InvertIcons ) ) ;
2018-06-23 14:18:04 -07:00
2018-06-06 18:18:33 -07:00
2017-09-19 11:42:46 -07:00
ActiveSliceSettings . SettingChanged . RegisterEvent ( ( s , e ) = >
{
if ( e is StringEventArgs stringArg
2018-01-13 18:54:40 -08:00
& & SettingsOrganizer . SettingsData . TryGetValue ( stringArg . Data , out SliceSettingData settingsData )
2017-09-19 11:42:46 -07:00
& & settingsData . ReloadUiWhenChanged )
{
UiThread . RunOnIdle ( ReloadAll ) ;
}
} , ref unregisterEvents ) ;
2017-12-04 10:35:24 -08:00
2018-04-09 15:54:30 -07:00
bool waitingForBedHeat = false ;
bool waitingForExtruderHeat = false ;
double heatDistance = 0 ;
double heatStart = 0 ;
// show temperature heating for m109 and m190
PrinterConnection . AnyCommunicationStateChanged . RegisterEvent ( ( s , e ) = >
{
var printerConnection = this . ActivePrinter . Connection ;
if ( printerConnection . PrinterIsPrinting | | printerConnection . PrinterIsPaused )
{
switch ( printerConnection . DetailedPrintingState )
{
case DetailedPrintingState . HeatingBed :
2018-04-09 16:59:17 -07:00
Tasks . Execute (
"Heating Bed" . Localize ( ) ,
( reporter , cancellationToken ) = >
{
waitingForBedHeat = true ;
waitingForExtruderHeat = false ;
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
var progressStatus = new ProgressStatus ( ) ;
heatStart = printerConnection . ActualBedTemperature ;
heatDistance = Math . Abs ( printerConnection . TargetBedTemperature - heatStart ) ;
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
while ( heatDistance > 0 & & waitingForBedHeat )
{
var remainingDistance = Math . Abs ( printerConnection . TargetBedTemperature - printerConnection . ActualBedTemperature ) ;
progressStatus . Status = $"Heating Bed ({printerConnection.ActualBedTemperature:0}/{printerConnection.TargetBedTemperature:0})" ;
progressStatus . Progress0To1 = ( heatDistance - remainingDistance ) / heatDistance ;
reporter . Report ( progressStatus ) ;
Thread . Sleep ( 10 ) ;
}
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
return Task . CompletedTask ;
} ,
2018-05-06 08:29:24 -07:00
new RunningTaskOptions ( )
2018-04-09 16:59:17 -07:00
{
ReadOnlyReporting = true
} ) ;
2018-04-09 15:54:30 -07:00
break ;
case DetailedPrintingState . HeatingExtruder :
2018-04-09 16:59:17 -07:00
Tasks . Execute (
"Heating Extruder" . Localize ( ) ,
( reporter , cancellationToken ) = >
{
waitingForBedHeat = false ;
waitingForExtruderHeat = true ;
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
var progressStatus = new ProgressStatus ( ) ;
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
heatStart = printerConnection . GetActualHotendTemperature ( 0 ) ;
heatDistance = Math . Abs ( printerConnection . GetTargetHotendTemperature ( 0 ) - heatStart ) ;
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
while ( heatDistance > 0 & & waitingForExtruderHeat )
{
var currentDistance = Math . Abs ( printerConnection . GetTargetHotendTemperature ( 0 ) - printerConnection . GetActualHotendTemperature ( 0 ) ) ;
progressStatus . Progress0To1 = ( heatDistance - currentDistance ) / heatDistance ;
2018-04-11 12:51:51 -07:00
progressStatus . Status = $"Heating Extruder ({printerConnection.GetActualHotendTemperature(0):0}/{printerConnection.GetTargetHotendTemperature(0):0})" ;
2018-04-09 16:59:17 -07:00
reporter . Report ( progressStatus ) ;
Thread . Sleep ( 1000 ) ;
}
2018-04-09 15:54:30 -07:00
2018-04-09 16:59:17 -07:00
return Task . CompletedTask ;
} ,
2018-05-06 08:29:24 -07:00
new RunningTaskOptions ( )
2018-04-09 16:59:17 -07:00
{
ReadOnlyReporting = true
} ) ;
2018-04-09 15:54:30 -07:00
break ;
case DetailedPrintingState . HomingAxis :
case DetailedPrintingState . Printing :
default :
// clear any existing waiting states
waitingForBedHeat = false ;
waitingForExtruderHeat = false ;
break ;
}
}
else
{
// turn of any running temp feedback tasks
waitingForBedHeat = false ;
waitingForExtruderHeat = false ;
}
} , ref unregisterEvent ) ;
// show countdown for turning off heat if required
2018-07-17 10:04:08 -07:00
PrinterConnection . TemporarilyHoldingTemp . RegisterEvent ( ( s , e ) = >
2018-01-30 14:48:53 -08:00
{
2018-04-07 22:51:10 -07:00
var printerConnection = this . ActivePrinter . Connection ;
2018-01-30 14:48:53 -08:00
2018-04-05 12:44:51 -07:00
if ( printerConnection . AnyHeatIsOn )
2018-01-30 14:48:53 -08:00
{
2018-07-18 11:57:54 -07:00
var paused = false ;
Tasks . Execute ( "" , ( reporter , cancellationToken ) = >
2018-01-30 14:48:53 -08:00
{
var progressStatus = new ProgressStatus ( ) ;
2018-07-17 10:04:08 -07:00
while ( printerConnection . SecondsToHoldTemperature > 0
2018-01-30 14:48:53 -08:00
& & ! cancellationToken . IsCancellationRequested
2018-07-17 10:04:08 -07:00
& & printerConnection . ContinuHoldingTemperature )
2018-01-30 14:48:53 -08:00
{
2018-07-18 11:57:54 -07:00
if ( paused )
{
progressStatus . Status = "Holding Temperature" . Localize ( ) ;
}
else
{
progressStatus . Status = string . Format (
"{0} {1:0}s" ,
2018-07-19 14:17:52 -07:00
"Automatic Heater Shutdown in" . Localize ( ) ,
2018-07-18 11:57:54 -07:00
printerConnection . SecondsToHoldTemperature ) ;
}
progressStatus . Progress0To1 = printerConnection . SecondsToHoldTemperature / printerConnection . TimeToHoldTemperature ;
2018-01-30 14:48:53 -08:00
reporter . Report ( progressStatus ) ;
2018-07-18 11:57:54 -07:00
Thread . Sleep ( 20 ) ;
2018-01-30 14:48:53 -08:00
}
2018-07-17 10:04:08 -07:00
return Task . CompletedTask ;
} ,
taskActions : new RunningTaskOptions ( )
{
PauseAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
2018-01-30 14:48:53 -08:00
{
2018-07-18 11:57:54 -07:00
paused = true ;
2018-07-17 10:04:08 -07:00
printerConnection . TimeHaveBeenHoldingTemperature . Stop ( ) ;
} ) ,
2018-07-20 14:40:41 -07:00
PauseToolTip = "Pause automatic heater shutdown" . Localize ( ) ,
2018-07-17 10:04:08 -07:00
ResumeAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
2018-02-09 13:37:21 -08:00
{
2018-07-18 11:57:54 -07:00
paused = false ;
2018-07-17 10:04:08 -07:00
printerConnection . TimeHaveBeenHoldingTemperature . Start ( ) ;
} ) ,
2018-07-20 14:40:41 -07:00
ResumeToolTip = "Resume automatic heater shutdown" . Localize ( ) ,
2018-07-17 10:04:08 -07:00
StopAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
{
printerConnection . TurnOffBedAndExtruders ( TurnOff . Now ) ;
2018-07-20 14:40:41 -07:00
} ) ,
StopToolTip = "Immediately turn off heaters" . Localize ( )
2018-01-30 14:48:53 -08:00
} ) ;
}
} , ref unregisterEvents ) ;
2017-10-10 16:40:59 -07:00
PrinterConnection . ErrorReported . RegisterEvent ( ( s , e ) = >
{
var foundStringEventArgs = e as FoundStringEventArgs ;
if ( foundStringEventArgs ! = null )
{
2018-09-17 14:31:26 -07:00
string message = "Your printer is reporting a HARDWARE ERROR and has been paused. Check the error and cancel the print if required." . Localize ( )
2017-10-10 16:40:59 -07:00
+ "\n"
+ "\n"
+ "Error Reported" . Localize ( ) + ":"
+ $" \" { foundStringEventArgs . LineToCheck } \ "." ;
UiThread . RunOnIdle ( ( ) = >
2018-09-17 14:31:26 -07:00
StyledMessageBox . ShowMessageBox ( ( clickedOk ) = >
{
if ( clickedOk & & this . ActivePrinter . Connection . PrinterIsPaused )
{
this . ActivePrinter . Connection . Resume ( ) ;
}
} , message , "Printer Hardware Error" . Localize ( ) , StyledMessageBox . MessageType . YES_NO , "Resume" . Localize ( ) , "OK" . Localize ( ) )
2017-10-10 16:40:59 -07:00
) ;
}
} , ref unregisterEvent ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
this . InitializeLibrary ( ) ;
2017-06-13 13:08:53 -07:00
2017-09-17 21:08:16 -07:00
PrinterConnection . AnyConnectionSucceeded . RegisterEvent ( ( s , e ) = >
2017-06-16 18:04:47 -07:00
{
// run the print leveling wizard if we need to for this printer
2018-07-10 15:34:08 -07:00
var printer = this . ActivePrinters . Where ( p = > p . Connection = = s ) . FirstOrDefault ( ) ;
2018-04-05 13:55:23 -07:00
if ( printer ! = null )
2017-06-16 18:04:47 -07:00
{
2018-05-29 16:04:45 -07:00
UiThread . RunOnIdle ( ( ) = >
{
2018-07-10 15:34:08 -07:00
this . RunAnyRequiredPrinterSetup ( printer , this . Theme ) ;
2018-05-29 16:04:45 -07:00
} ) ;
2017-06-16 18:04:47 -07:00
}
} , ref unregisterEvents ) ;
2018-03-26 16:54:36 -07:00
HashSet < IObject3DEditor > mappedEditors ;
objectEditorsByType = new Dictionary < Type , HashSet < IObject3DEditor > > ( ) ;
2018-08-03 21:55:42 -07:00
// Initialize plugins, passing the MatterControl assembly as the only non-dll instance
2018-09-06 16:08:00 -07:00
//PluginFinder.Initialize(Assembly.GetExecutingAssembly());
2018-08-03 21:55:42 -07:00
2018-03-26 16:54:36 -07:00
foreach ( IObject3DEditor editor in PluginFinder . CreateInstancesOf < IObject3DEditor > ( ) )
{
foreach ( Type type in editor . SupportedTypes ( ) )
{
if ( ! objectEditorsByType . TryGetValue ( type , out mappedEditors ) )
{
mappedEditors = new HashSet < IObject3DEditor > ( ) ;
objectEditorsByType . Add ( type , mappedEditors ) ;
}
mappedEditors . Add ( editor ) ;
}
}
}
2018-05-08 17:04:28 -07:00
private void ChangeToTheme ( IThemeColors themeColors )
{
this . Theme . RebuildTheme ( themeColors ) ;
var json = JsonConvert . SerializeObject ( ActiveTheme . Instance ) ;
var clonedColors = JsonConvert . DeserializeObject < ThemeColors > ( json ) ;
clonedColors . IsDarkTheme = false ;
clonedColors . Name = "MenuColors" ;
clonedColors . PrimaryTextColor = new Color ( "#222" ) ;
clonedColors . SecondaryTextColor = new Color ( "#666" ) ;
clonedColors . PrimaryBackgroundColor = new Color ( "#fff" ) ;
clonedColors . SecondaryBackgroundColor = new Color ( "#ddd" ) ;
clonedColors . TertiaryBackgroundColor = new Color ( "#ccc" ) ;
this . MenuTheme . RebuildTheme ( clonedColors ) ;
this . RebuildSceneOperations ( this . Theme ) ;
2018-09-05 13:21:25 -07:00
AggContext . StaticData . PurgeCache ( ) ;
2018-05-08 17:04:28 -07:00
}
2018-04-18 14:38:09 -07:00
public bool RunAnyRequiredPrinterSetup ( PrinterConfig printer , ThemeConfig theme )
2018-04-06 14:58:25 -07:00
{
if ( PrintLevelingData . NeedsToBeRun ( printer ) )
{
// run probe calibration first if we need to
2018-05-24 09:10:41 -07:00
if ( ProbeCalibrationWizard . NeedsToBeRun ( printer ) )
2018-04-06 14:58:25 -07:00
{
UiThread . RunOnIdle ( ( ) = >
{
2018-05-23 19:12:46 -07:00
LevelingWizard . ShowProbeCalibrationWizard ( printer , theme ) ;
2018-04-06 14:58:25 -07:00
} ) ;
}
else // run the leveling wizard
{
UiThread . RunOnIdle ( ( ) = >
{
2018-05-23 19:12:46 -07:00
LevelingWizard . ShowPrintLevelWizard ( printer , theme ) ;
2018-04-06 14:58:25 -07:00
} ) ;
}
return true ;
}
return false ;
}
2018-03-26 16:54:36 -07:00
public HashSet < IObject3DEditor > GetEditorsForType ( Type selectedItemType )
{
HashSet < IObject3DEditor > mappedEditors ;
objectEditorsByType . TryGetValue ( selectedItemType , out mappedEditors ) ;
if ( mappedEditors = = null )
{
foreach ( var kvp in objectEditorsByType )
{
var editorType = kvp . Key ;
2018-06-20 17:16:38 -07:00
if ( editorType . IsAssignableFrom ( selectedItemType )
& & selectedItemType ! = typeof ( Object3D ) )
2018-03-26 16:54:36 -07:00
{
mappedEditors = kvp . Value ;
break ;
}
}
}
return mappedEditors ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2017-10-09 07:58:32 -07:00
internal void Shutdown ( )
{
// Ensure all threads shutdown gracefully on close
// Release any waiting generator threads
2018-06-21 10:50:40 -07:00
this . Thumbnails . Shutdown ( ) ;
2018-02-01 17:25:42 -08:00
2018-07-12 22:49:39 -07:00
// Kill all long running tasks (this will release the slicing thread if running)
2018-05-15 13:56:05 -07:00
foreach ( var task in Tasks . RunningTasks )
2018-02-01 17:25:42 -08:00
{
task . CancelTask ( ) ;
}
2017-10-09 07:58:32 -07:00
}
2018-05-15 13:56:05 -07:00
static Dictionary < NamedTypeFace , TypeFace > TypeFaceCache { get ; set ; } = new Dictionary < NamedTypeFace , TypeFace > ( )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-15 13:56:05 -07:00
[NamedTypeFace.Liberation_Sans] = LiberationSansFont . Instance ,
[NamedTypeFace.Liberation_Sans_Bold] = LiberationSansBoldFont . Instance ,
[NamedTypeFace.Liberation_Mono] = TypeFace . LoadFrom ( AggContext . StaticData . ReadAllText ( Path . Combine ( "Fonts" , "LiberationMono.svg" ) ) )
} ;
public static TypeFace GetTypeFace ( NamedTypeFace Name )
{
if ( ! TypeFaceCache . ContainsKey ( Name ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-15 13:56:05 -07:00
TypeFace typeFace = new TypeFace ( ) ;
var file = Path . Combine ( "Fonts" , $"{Name}.ttf" ) ;
var exists = AggContext . StaticData . FileExists ( file ) ;
var stream = exists ? AggContext . StaticData . OpenStream ( file ) : null ;
2018-05-22 22:06:20 -07:00
if ( stream ! = null
2018-05-15 13:56:05 -07:00
& & typeFace . LoadTTF ( stream ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-15 13:56:05 -07:00
TypeFaceCache . Add ( Name , typeFace ) ;
}
else
{
// try the svg
file = Path . Combine ( "Fonts" , $"{Name}.svg" ) ;
exists = AggContext . StaticData . FileExists ( file ) ;
typeFace = exists ? TypeFace . LoadFrom ( AggContext . StaticData . ReadAllText ( file ) ) : null ;
if ( typeFace ! = null )
{
TypeFaceCache . Add ( Name , typeFace ) ;
}
else
{
// assign it to the default
TypeFaceCache . Add ( Name , TypeFaceCache [ NamedTypeFace . Liberation_Sans ] ) ;
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
}
2018-05-15 13:56:05 -07:00
return TypeFaceCache [ Name ] ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-05-15 13:56:05 -07:00
2018-01-28 07:53:23 -08:00
private static TypeFace titilliumTypeFace = null ;
public static TypeFace TitilliumTypeFace
{
get
{
if ( titilliumTypeFace = = null )
{
titilliumTypeFace = TypeFace . LoadFrom ( AggContext . StaticData . ReadAllText ( Path . Combine ( "Fonts" , "TitilliumWeb-Black.svg" ) ) ) ;
}
return titilliumTypeFace ;
}
}
2018-05-30 13:40:23 -07:00
public static string LoadCachedFile ( string cacheKey , string cacheScope )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
string cachePath = CacheablePath ( cacheScope , cacheKey ) ;
2018-05-29 13:11:38 -07:00
if ( File . Exists ( cachePath ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-29 13:11:38 -07:00
// Load from cache and deserialize
return File . ReadAllText ( cachePath ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-05-29 13:11:38 -07:00
return null ;
}
public static Task < T > LoadCacheableAsync < T > ( string cacheKey , string cacheScope , string staticDataFallbackPath = null ) where T : class
{
2018-05-30 13:40:23 -07:00
if ( LoadCachedFile ( cacheKey , cacheScope ) is string cachedFile )
{
// Load from cache and deserialize
return Task . FromResult (
JsonConvert . DeserializeObject < T > ( cachedFile ) ) ;
}
2018-05-29 13:11:38 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
try
{
if ( staticDataFallbackPath ! = null
2017-08-20 02:34:39 -07:00
& & AggContext . StaticData . FileExists ( staticDataFallbackPath ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
return Task . FromResult (
2017-08-20 02:34:39 -07:00
JsonConvert . DeserializeObject < T > ( AggContext . StaticData . ReadAllText ( staticDataFallbackPath ) ) ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
}
catch
{
}
return Task . FromResult ( default ( T ) ) ;
}
/// <summary>
/// Requests fresh content from online services, falling back to cached content if offline
/// </summary>
/// <param name="collector">The custom collector function to load the content</param>
/// <returns></returns>
public async static Task < T > LoadCacheableAsync < T > ( string cacheKey , string cacheScope , Func < Task < T > > collector , string staticDataFallbackPath = null ) where T : class
{
string cachePath = CacheablePath ( cacheScope , cacheKey ) ;
try
{
// Try to update the document
T item = await collector ( ) ;
if ( item ! = null )
{
// update cache on success
File . WriteAllText ( cachePath , JsonConvert . SerializeObject ( item , Formatting . Indented ) ) ;
return item ;
}
}
catch
{
// Fall back to preexisting cache if failed
}
return await LoadCacheableAsync < T > ( cacheKey , cacheScope , staticDataFallbackPath ) ;
}
public static string CacheablePath ( string cacheScope , string cacheKey )
{
2018-07-31 12:21:44 -07:00
string scopeDirectory = Path . Combine ( ApplicationDataStorage . Instance . CacheDirectory , cacheScope ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
// Ensure directory exists
Directory . CreateDirectory ( scopeDirectory ) ;
2017-12-28 16:45:34 -08:00
return Path . Combine ( scopeDirectory , cacheKey ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
// Indicates if given file can be opened on the design surface
public bool IsLoadableFile ( string filePath )
{
string extension = Path . GetExtension ( filePath ) . ToLower ( ) ;
string extensionWithoutPeriod = extension . Trim ( '.' ) ;
return ! string . IsNullOrEmpty ( extension )
2018-03-26 16:54:36 -07:00
& & ( ApplicationSettings . OpenDesignFileParams . Contains ( extension )
2017-11-07 12:06:43 -08:00
| | this . Library . ContentProviders . Keys . Contains ( extensionWithoutPeriod ) ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2017-11-07 11:31:30 -08:00
public bool IsReloading { get ; private set ; } = false ;
2017-11-07 13:54:09 -08:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public void ReloadAll ( )
{
2018-04-24 13:32:20 -07:00
UiThread . RunOnIdle ( ( ) = >
2017-11-08 23:39:35 -08:00
{
2018-04-24 13:32:20 -07:00
var reloadingOverlay = new GuiWidget
{
HAnchor = HAnchor . Stretch ,
VAnchor = VAnchor . Stretch ,
BackgroundColor = this . Theme . DarkShade
} ;
2017-11-07 12:06:43 -08:00
2018-04-24 13:32:20 -07:00
reloadingOverlay . AddChild ( new TextWidget ( "Reloading" . Localize ( ) + "..." , textColor : Color . White , pointSize : this . Theme . DefaultFontSize * 1.5 )
{
HAnchor = HAnchor . Center ,
VAnchor = VAnchor . Center
} ) ;
2017-11-07 12:06:43 -08:00
2018-04-24 13:32:20 -07:00
AppContext . RootSystemWindow . AddChild ( reloadingOverlay ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2018-04-24 13:32:20 -07:00
this . IsReloading = true ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2018-04-24 13:32:20 -07:00
UiThread . RunOnIdle ( ( ) = >
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-06-24 08:54:44 -07:00
GuiWidget . LayoutCount = 0 ;
2018-04-24 13:32:20 -07:00
using ( new QuickTimer ( $"ReloadAll_{reloadCount++}:" ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-07-12 09:22:28 -07:00
MainView = new WidescreenPanel ( ApplicationController . Instance . Theme ) ;
2018-04-24 13:32:20 -07:00
this . DoneReloadingAll ? . CallEvents ( null , null ) ;
using ( new QuickTimer ( "Time to AddMainview: " ) )
{
AppContext . RootSystemWindow . CloseAllChildren ( ) ;
AppContext . RootSystemWindow . AddChild ( MainView ) ;
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-06-24 08:54:44 -07:00
Debug . WriteLine ( $"LayoutCount: {GuiWidget.LayoutCount:0.0}" ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
2018-04-24 13:32:20 -07:00
this . IsReloading = false ;
} ) ;
2017-11-07 13:54:09 -08:00
} ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
static int reloadCount = 0 ;
2018-02-13 17:00:23 -08:00
public async void OnApplicationClosed ( )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-06-21 10:50:40 -07:00
this . Thumbnails . Shutdown ( ) ;
2017-11-30 08:52:01 -08:00
2017-11-14 15:45:23 -08:00
// Save changes before close
if ( this . ActivePrinter ! = null
& & this . ActivePrinter ! = emptyPrinter )
{
2018-02-13 17:00:23 -08:00
await this . ActivePrinter . Bed . SaveChanges ( null , CancellationToken . None ) ;
2017-11-14 15:45:23 -08:00
}
2017-11-30 08:52:01 -08:00
ApplicationSettings . Instance . ReleaseClientToken ( ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-05-08 16:23:08 -07:00
internal static void LoadTheme ( )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-08 16:23:08 -07:00
string activeThemeName = UserSettings . Instance . get ( UserSettingsKey . ActiveThemeName ) ;
if ( ! string . IsNullOrEmpty ( activeThemeName ) )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2018-05-08 16:23:08 -07:00
ActiveTheme . Instance = ActiveTheme . GetThemeColors ( activeThemeName ) ;
}
else if ( ! string . IsNullOrEmpty ( OemSettings . Instance . ThemeColor ) )
{
ActiveTheme . Instance = ActiveTheme . GetThemeColors ( OemSettings . Instance . ThemeColor ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
else
{
2018-05-08 16:23:08 -07:00
ActiveTheme . Instance = ActiveTheme . GetThemeColors ( "Blue - Light" ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
}
public static ApplicationController Instance
{
get
{
if ( globalInstance = = null )
{
2017-12-16 20:06:03 -08:00
globalInstance = new ApplicationController ( ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2018-05-08 13:27:13 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
return globalInstance ;
}
}
2017-09-16 01:11:44 -07:00
public DragDropData DragDropData { get ; set ; } = new DragDropData ( ) ;
2017-09-15 18:45:21 -07:00
public string PrintingItemName { get ; set ; }
2017-09-25 22:27:46 -07:00
2017-11-03 10:32:11 -07:00
public string ShortProductName = > "MatterControl" ;
2017-10-07 15:17:39 -07:00
public string ProductName = > "MatterHackers: MatterControl" ;
2017-09-20 15:28:58 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public void SwitchToPurchasedLibrary ( )
{
var purchasedContainer = Library . RootLibaryContainer . ChildContainers . Where ( c = > c . ID = = "LibraryProviderPurchasedKey" ) . FirstOrDefault ( ) ;
if ( purchasedContainer ! = null )
{
// TODO: Navigate to purchased container
throw new NotImplementedException ( "SwitchToPurchasedLibrary" ) ;
}
}
2017-12-18 17:22:50 -08:00
public void OnLoadActions ( )
{
// TODO: Calling UserChanged seems wrong. Load the right user before we spin up controls, rather than after
// Pushing this after load fixes that empty printer list
/////////////////////ApplicationController.Instance.UserChanged();
bool showAuthWindow = PrinterSetup . ShouldShowAuthPanel ? . Invoke ( ) ? ? false ;
if ( showAuthWindow )
{
if ( ApplicationSettings . Instance . get ( ApplicationSettingsKey . SuppressAuthPanel ) ! = "True" )
{
//Launch window to prompt user to sign in
UiThread . RunOnIdle ( ( ) = > DialogWindow . Show ( PrinterSetup . GetBestStartPage ( ) ) ) ;
}
}
else
{
//If user in logged in sync before checking to prompt to create printer
if ( ApplicationController . SyncPrinterProfiles = = null )
{
RunSetupIfRequired ( ) ;
}
else
{
ApplicationController . SyncPrinterProfiles . Invoke ( "ApplicationController.OnLoadActions()" , null ) . ContinueWith ( ( task ) = >
{
RunSetupIfRequired ( ) ;
} ) ;
}
}
2018-09-26 14:09:35 -07:00
// Show the End User License Agreement if it has not been shown (on windows it is shown in the installer)
if ( AggContext . OperatingSystem ! = OSType . Windows )
2017-12-18 17:22:50 -08:00
{
2018-09-26 14:09:35 -07:00
// Make sure this window is show modal (if available)
2017-12-18 17:22:50 -08:00
// show this last so it is on top
2018-04-18 14:38:09 -07:00
if ( UserSettings . Instance . get ( UserSettingsKey . SoftwareLicenseAccepted ) ! = "true" )
2017-12-18 17:22:50 -08:00
{
UiThread . RunOnIdle ( ( ) = > DialogWindow . Show < LicenseAgreementPage > ( ) ) ;
}
}
2018-07-10 15:34:08 -07:00
if ( this . ActivePrinter is PrinterConfig printer
2017-12-18 17:22:50 -08:00
& & printer . Settings . PrinterSelected
& & printer . Settings . GetValue < bool > ( SettingsKey . auto_connect ) )
{
UiThread . RunOnIdle ( ( ) = >
{
//PrinterConnectionAndCommunication.Instance.HaltConnectionThread();
printer . Connection . Connect ( ) ;
} , 2 ) ;
}
2018-03-08 10:36:00 -08:00
if ( AssetObject3D . AssetManager = = null )
{
2018-03-26 16:54:36 -07:00
AssetObject3D . AssetManager = new AssetManager ( ) ;
2018-03-08 10:36:00 -08:00
}
2017-12-18 17:22:50 -08:00
//HtmlWindowTest();
}
private static void RunSetupIfRequired ( )
{
if ( ! ProfileManager . Instance . ActiveProfiles . Any ( ) )
{
// Start the setup wizard if no profiles exist
UiThread . RunOnIdle ( ( ) = > DialogWindow . Show ( PrinterSetup . GetBestStartPage ( ) ) ) ;
}
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
public void SwitchToSharedLibrary ( )
{
// Switch to the shared library
var libraryContainer = Library . RootLibaryContainer . ChildContainers . Where ( c = > c . ID = = "LibraryProviderSharedKey" ) . FirstOrDefault ( ) ;
if ( libraryContainer ! = null )
{
// TODO: Navigate to purchased container
throw new NotImplementedException ( "SwitchToSharedLibrary" ) ;
}
}
public void ChangeCloudSyncStatus ( bool userAuthenticated , string reason = "" )
{
UserSettings . Instance . set ( UserSettingsKey . CredentialsInvalid , userAuthenticated ? "false" : "true" ) ;
UserSettings . Instance . set ( UserSettingsKey . CredentialsInvalidReason , userAuthenticated ? "" : reason ) ;
CloudSyncStatusChanged . CallEvents ( this , new CloudSyncEventArgs ( ) { IsAuthenticated = userAuthenticated } ) ;
// Only fire UserChanged if it actually happened - prevents runaway positive feedback loop
if ( ! string . IsNullOrEmpty ( AuthenticationData . Instance . ActiveSessionUsername )
& & AuthenticationData . Instance . ActiveSessionUsername ! = AuthenticationData . Instance . LastSessionUsername )
{
// only set it if it is an actual user name
AuthenticationData . Instance . LastSessionUsername = AuthenticationData . Instance . ActiveSessionUsername ;
}
2018-02-14 08:36:28 -08:00
UiThread . RunOnIdle ( this . UserChanged ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
// Called after every startup and at the completion of every authentication change
public void UserChanged ( )
{
ProfileManager . ReloadActiveUser ( ) ;
// Ensure SQLite printers are imported
ProfileManager . Instance . EnsurePrintersImported ( ) ;
var guest = ProfileManager . Load ( "guest" ) ;
// If profiles.json was created, run the import wizard to pull in any SQLite printers
if ( guest ? . Profiles ? . Any ( ) = = true
2018-03-26 16:54:36 -07:00
& & ! ProfileManager . Instance . IsGuestProfile
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
& & ! ProfileManager . Instance . PrintersImported )
{
// Show the import printers wizard
2017-11-08 15:56:37 -08:00
DialogWindow . Show < CopyGuestProfilesToUser > ( ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
}
private EventHandler unregisterEvent ;
2017-08-17 18:18:41 -07:00
public Stream LoadHttpAsset ( string url )
{
string fingerPrint = ToSHA1 ( url ) ;
string cachePath = ApplicationController . CacheablePath ( "HttpAssets" , fingerPrint ) ;
if ( File . Exists ( cachePath ) )
{
return File . Open ( cachePath , FileMode . Open ) ;
}
else
{
var client = new WebClient ( ) ;
var bytes = client . DownloadData ( url ) ;
File . WriteAllBytes ( cachePath , bytes ) ;
return new MemoryStream ( bytes ) ;
}
}
/// <summary>
/// Compute hash for string encoded as UTF8
/// </summary>
/// <param name="s">String to be hashed</param>
public static string ToSHA1 ( string s )
{
byte [ ] bytes = Encoding . UTF8 . GetBytes ( s ) ;
// var timer = Stopwatch.StartNew();
using ( var sha1 = System . Security . Cryptography . SHA1 . Create ( ) )
{
byte [ ] hash = sha1 . ComputeHash ( bytes ) ;
string SHA1 = BitConverter . ToString ( hash ) . Replace ( "-" , string . Empty ) ;
// Console.WriteLine("{0} {1} {2}", SHA1, timer.ElapsedMilliseconds, filePath);
return SHA1 ;
}
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
/// <summary>
/// Download an image from the web into the specified ImageBuffer
/// </summary>
/// <param name="uri"></param>
public void DownloadToImageAsync ( ImageBuffer imageToLoadInto , string uriToLoad , bool scaleToImageX , IRecieveBlenderByte scalingBlender = null )
{
if ( scalingBlender = = null )
{
scalingBlender = new BlenderBGRA ( ) ;
}
WebClient client = new WebClient ( ) ;
client . DownloadDataCompleted + = ( object sender , DownloadDataCompletedEventArgs e ) = >
{
try // if we get a bad result we can get a target invocation exception. In that case just don't show anything
{
// scale the loaded image to the size of the target image
byte [ ] raw = e . Result ;
Stream stream = new MemoryStream ( raw ) ;
ImageBuffer unScaledImage = new ImageBuffer ( 10 , 10 ) ;
if ( scaleToImageX )
{
2017-08-20 02:34:39 -07:00
AggContext . StaticData . LoadImageData ( stream , unScaledImage ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
// If the source image (the one we downloaded) is more than twice as big as our dest image.
while ( unScaledImage . Width > imageToLoadInto . Width * 2 )
{
// The image sampler we use is a 2x2 filter so we need to scale by a max of 1/2 if we want to get good results.
2017-12-15 20:29:16 -08:00
// So we scale as many times as we need to get the Image to be the right size.
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
// If this were going to be a non-uniform scale we could do the x and y separately to get better results.
ImageBuffer halfImage = new ImageBuffer ( unScaledImage . Width / 2 , unScaledImage . Height / 2 , 32 , scalingBlender ) ;
halfImage . NewGraphics2D ( ) . Render ( unScaledImage , 0 , 0 , 0 , halfImage . Width / ( double ) unScaledImage . Width , halfImage . Height / ( double ) unScaledImage . Height ) ;
unScaledImage = halfImage ;
}
2017-09-16 01:11:44 -07:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
double finalScale = imageToLoadInto . Width / ( double ) unScaledImage . Width ;
imageToLoadInto . Allocate ( imageToLoadInto . Width , ( int ) ( unScaledImage . Height * finalScale ) , imageToLoadInto . Width * ( imageToLoadInto . BitDepth / 8 ) , imageToLoadInto . BitDepth ) ;
imageToLoadInto . NewGraphics2D ( ) . Render ( unScaledImage , 0 , 0 , 0 , finalScale , finalScale ) ;
}
else
{
2017-08-20 02:34:39 -07:00
AggContext . StaticData . LoadImageData ( stream , imageToLoadInto ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2017-11-14 15:45:23 -08:00
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
imageToLoadInto . MarkImageChanged ( ) ;
}
catch
{
}
} ;
try
{
client . DownloadDataAsync ( new Uri ( uriToLoad ) ) ;
}
catch
{
}
}
2018-04-25 11:35:33 -07:00
/// <summary>
/// Download an image from the web into the specified ImageSequence
/// </summary>
/// <param name="uri"></param>
public void DownloadToImageSequenceAsync ( ImageSequence imageSequenceToLoadInto , string uriToLoad )
{
WebClient client = new WebClient ( ) ;
client . DownloadDataCompleted + = ( object sender , DownloadDataCompletedEventArgs e ) = >
{
try // if we get a bad result we can get a target invocation exception. In that case just don't show anything
{
2018-05-04 14:50:38 -07:00
Task . Run ( ( ) = >
{
// scale the loaded image to the size of the target image
byte [ ] raw = e . Result ;
Stream stream = new MemoryStream ( raw ) ;
var asyncImageSequence = new ImageSequence ( ) ;
2018-04-25 11:35:33 -07:00
2018-05-04 14:50:38 -07:00
AggContext . StaticData . LoadImageSequenceData ( stream , asyncImageSequence ) ;
UiThread . RunOnIdle ( ( ) = >
{
imageSequenceToLoadInto . Copy ( asyncImageSequence ) ;
imageSequenceToLoadInto . Invalidate ( ) ;
} ) ;
} ) ;
2018-04-25 11:35:33 -07:00
}
catch
{
}
} ;
try
{
client . DownloadDataAsync ( new Uri ( uriToLoad ) ) ;
}
catch
{
}
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
/// <summary>
/// Cancels prints within the first two minutes or interactively prompts the user to confirm cancellation
/// </summary>
/// <returns>A boolean value indicating if the print was canceled</returns>
2018-09-24 11:09:56 -07:00
public void ConditionallyCancelPrint ( )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
2017-09-17 21:08:16 -07:00
if ( this . ActivePrinter . Connection . SecondsPrinted > 120 )
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
{
StyledMessageBox . ShowMessageBox (
( bool response ) = >
{
if ( response )
{
2017-09-17 21:08:16 -07:00
UiThread . RunOnIdle ( ( ) = > this . ActivePrinter . Connection . Stop ( ) ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
} ,
"Cancel the current print?" . Localize ( ) ,
"Cancel Print?" . Localize ( ) ,
StyledMessageBox . MessageType . YES_NO ,
"Cancel Print" . Localize ( ) ,
"Continue Printing" . Localize ( ) ) ;
}
else
{
2017-09-17 21:08:16 -07:00
this . ActivePrinter . Connection . Stop ( ) ;
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
}
/// <summary>
/// Register the given PrintItemAction into the named section
/// </summary>
/// <param name="section">The section to register in</param>
/// <param name="printItemAction">The action to register</param>
public void RegisterLibraryAction ( string section , PrintItemAction printItemAction )
{
List < PrintItemAction > items ;
if ( ! registeredLibraryActions . TryGetValue ( section , out items ) )
{
items = new List < PrintItemAction > ( ) ;
registeredLibraryActions . Add ( section , items ) ;
}
items . Add ( printItemAction ) ;
}
/// <summary>
/// Enumerate the given section, returning all registered actions
/// </summary>
/// <param name="section">The section to enumerate</param>
/// <returns></returns>
public IEnumerable < PrintItemAction > RegisteredLibraryActions ( string section )
{
List < PrintItemAction > items ;
if ( registeredLibraryActions . TryGetValue ( section , out items ) )
{
return items ;
}
return Enumerable . Empty < PrintItemAction > ( ) ;
}
2017-06-16 18:04:47 -07:00
2018-01-09 15:47:00 -08:00
public IEnumerable < SceneSelectionOperation > RegisteredSceneOperations = > registeredSceneOperations ;
2017-09-18 17:57:06 -07:00
2018-02-06 13:31:25 -08:00
public static IObject3D ClipboardItem { get ; internal set ; }
2018-05-03 14:37:30 -07:00
public Action < ILibraryItem > ShareLibraryItem { get ; set ; }
2018-02-06 13:31:25 -08:00
2018-05-03 23:00:02 -07:00
public List < BedConfig > Workspaces { get ; } = new List < BedConfig > ( ) ;
2018-05-09 07:52:05 -07:00
public AppViewState ViewState { get ; } = new AppViewState ( ) ;
2018-07-09 23:29:34 -07:00
public Uri HelpArticleSource { get ; set ; }
2018-08-28 18:45:58 -07:00
public Dictionary < string , HelpArticle > HelpArticlesByID { get ; set ; }
2018-05-09 07:52:05 -07:00
2017-08-07 14:19:28 -07:00
public event EventHandler < WidgetSourceEventArgs > AddPrintersTabRightElement ;
public void NotifyPrintersTabRightElement ( GuiWidget sourceExentionArea )
{
AddPrintersTabRightElement ? . Invoke ( this , new WidgetSourceEventArgs ( sourceExentionArea ) ) ;
}
2017-06-16 18:04:47 -07:00
private string doNotAskAgainMessage = "Don't remind me again" . Localize ( ) ;
2018-02-09 18:11:55 -08:00
public async Task PrintPart ( EditContext editContext , PrinterConfig printer , IProgress < ProgressStatus > reporter , CancellationToken cancellationToken , bool overrideAllowGCode = false )
2017-06-16 18:04:47 -07:00
{
2018-02-09 18:11:55 -08:00
var partFilePath = editContext . SourceFilePath ;
var gcodeFilePath = editContext . GCodeFilePath ;
var printItemName = editContext . SourceItem . Name ;
2017-10-16 17:28:18 -07:00
// Exit if called in a non-applicable state
if ( this . ActivePrinter . Connection . CommunicationState ! = CommunicationStates . Connected
& & this . ActivePrinter . Connection . CommunicationState ! = CommunicationStates . FinishedPrint )
{
return ;
}
2017-06-16 18:04:47 -07:00
try
{
// If leveling is required or is currently on
2018-07-10 15:34:08 -07:00
if ( this . RunAnyRequiredPrinterSetup ( printer , this . Theme ) )
2017-06-16 18:04:47 -07:00
{
2018-04-06 14:58:25 -07:00
// We need to calibrate. So, don't print this part.
return ;
2017-06-16 18:04:47 -07:00
}
2018-05-23 06:23:13 -07:00
this . PrintingItemName = printItemName ;
if ( ActiveSliceSettings . Instance . IsValid ( ) )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
// clear the output cache prior to starting a print
this . ActivePrinter . Connection . TerminalLog . Clear ( ) ;
string hideGCodeWarning = ApplicationSettings . Instance . get ( ApplicationSettingsKey . HideGCodeWarning ) ;
2017-09-23 09:19:32 -07:00
2018-05-23 06:23:13 -07:00
if ( Path . GetExtension ( partFilePath ) . ToUpper ( ) = = ".GCODE"
& & hideGCodeWarning = = null
& & ! overrideAllowGCode )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
var hideGCodeWarningCheckBox = new CheckBox ( doNotAskAgainMessage )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
TextColor = ActiveTheme . Instance . PrimaryTextColor ,
Margin = new BorderDouble ( top : 6 , left : 6 ) ,
HAnchor = Agg . UI . HAnchor . Left
} ;
hideGCodeWarningCheckBox . Click + = ( sender , e ) = >
{
if ( hideGCodeWarningCheckBox . Checked )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
ApplicationSettings . Instance . set ( ApplicationSettingsKey . HideGCodeWarning , "true" ) ;
}
else
{
ApplicationSettings . Instance . set ( ApplicationSettingsKey . HideGCodeWarning , null ) ;
}
} ;
UiThread . RunOnIdle ( ( ) = >
{
StyledMessageBox . ShowMessageBox (
( messageBoxResponse ) = >
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
if ( messageBoxResponse )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
this . ActivePrinter . Connection . CommunicationState = CommunicationStates . PreparingToPrint ;
2018-05-23 07:14:21 -07:00
this . ArchiveAndStartPrint ( partFilePath , gcodeFilePath , printer ) ;
2017-06-16 18:04:47 -07:00
}
2018-05-23 06:23:13 -07:00
} ,
"The file you are attempting to print is a GCode file.\n\nIt is recommended that you only print Gcode files known to match your printer's configuration.\n\nAre you sure you want to print this GCode file?" . Localize ( ) ,
"Warning - GCode file" . Localize ( ) ,
new GuiWidget [ ]
2017-09-15 18:45:21 -07:00
{
2018-05-23 06:23:13 -07:00
new VerticalSpacer ( ) ,
hideGCodeWarningCheckBox
} ,
StyledMessageBox . MessageType . YES_NO ) ;
} ) ;
}
else
{
this . ActivePrinter . Connection . CommunicationState = CommunicationStates . PreparingToPrint ;
2017-10-16 17:09:00 -07:00
2018-07-10 15:34:08 -07:00
( bool slicingSucceeded , string finalPath ) = await this . SliceItemLoadOutput (
2018-05-23 06:23:13 -07:00
printer ,
printer . Bed . Scene ,
gcodeFilePath ) ;
2017-12-11 22:22:56 -08:00
2018-05-23 06:49:58 -07:00
// Only start print if slicing completed
if ( slicingSucceeded )
{
2018-05-26 12:16:23 -07:00
this . ArchiveAndStartPrint ( partFilePath , finalPath , printer ) ;
2018-05-23 06:49:58 -07:00
}
2018-05-23 07:18:22 -07:00
else
{
// TODO: Need to reset printing state? This seems like I shouldn't own this indicator
this . ActivePrinter . Connection . CommunicationState = CommunicationStates . Connected ;
}
2017-06-16 18:04:47 -07:00
}
}
}
catch ( Exception )
{
}
}
2018-03-21 17:17:36 -07:00
public void ResetTranslationMap ( )
{
2018-07-30 11:50:22 -07:00
LoadTranslationMap ( ) ;
}
public static void LoadTranslationMap ( )
{
// Select either the user supplied language name or the current thread language name
string twoLetterIsoLanguageName = string . IsNullOrEmpty ( UserSettings . Instance . Language ) ?
Thread . CurrentThread . CurrentUICulture . TwoLetterISOLanguageName . ToLower ( ) :
UserSettings . Instance . Language . ToLower ( ) ;
string translationFilePath = Path . Combine ( "Translations" , twoLetterIsoLanguageName , "Translation.txt" ) ;
if ( twoLetterIsoLanguageName = = "en" )
{
TranslationMap . ActiveTranslationMap = new TranslationMap ( ) ;
}
else
{
using ( var stream = AggContext . StaticData . OpenStream ( translationFilePath ) )
using ( var streamReader = new StreamReader ( stream ) )
{
TranslationMap . ActiveTranslationMap = new TranslationMap ( streamReader , UserSettings . Instance . Language ) ;
}
}
2018-03-21 17:17:36 -07:00
}
2018-05-23 07:17:47 -07:00
public void MonitorPrintTask ( PrinterConfig printer )
2018-03-19 11:45:28 -07:00
{
2018-04-13 16:16:51 -07:00
string layerDetails = ( printer . Bed . LoadedGCode ? . LayerCount > 0 ) ? $" of {printer.Bed.LoadedGCode.LayerCount}" : "" ;
2018-04-09 18:05:46 -07:00
2018-07-10 15:34:08 -07:00
this . Tasks . Execute (
2018-04-09 18:05:46 -07:00
"Printing" . Localize ( ) ,
2018-03-19 11:45:28 -07:00
( reporterB , cancellationTokenB ) = >
{
var progressStatus = new ProgressStatus ( ) ;
reporterB . Report ( progressStatus ) ;
return Task . Run ( ( ) = >
{
string printing = "Printing" . Localize ( ) ;
int totalLayers = printer . Connection . TotalLayersInPrint ;
while ( ! printer . Connection . PrinterIsPrinting
& & ! cancellationTokenB . IsCancellationRequested )
{
// Wait for printing
Thread . Sleep ( 200 ) ;
}
while ( ( printer . Connection . PrinterIsPrinting | | printer . Connection . PrinterIsPaused )
& & ! cancellationTokenB . IsCancellationRequested )
{
2018-04-09 18:05:46 -07:00
progressStatus . Status = $"{printing} ({printer.Connection.CurrentlyPrintingLayer + 1}{layerDetails}) - {printer.Connection.PercentComplete:0}%" ;
2018-03-19 11:45:28 -07:00
progressStatus . Progress0To1 = printer . Connection . PercentComplete / 100 ;
reporterB . Report ( progressStatus ) ;
Thread . Sleep ( 200 ) ;
}
} ) ;
} ,
2018-05-06 08:29:24 -07:00
taskActions : new RunningTaskOptions ( )
2018-03-19 11:45:28 -07:00
{
2018-05-07 13:12:32 -07:00
ExpansionSerializationKey = $"{nameof(MonitorPrintTask)}_expanded" ,
2018-07-10 15:34:08 -07:00
RichProgressWidget = ( ) = > PrinterTabPage . PrintProgressWidget ( printer , this . Theme ) ,
2018-05-06 08:29:24 -07:00
PauseAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
2018-03-19 11:45:28 -07:00
{
printer . Connection . RequestPause ( ) ;
} ) ,
2018-09-17 14:31:26 -07:00
IsPaused = ( ) = >
{
return printer . Connection . PrinterIsPaused ;
} ,
2018-07-20 14:40:41 -07:00
PauseToolTip = "Pause Print" . Localize ( ) ,
2018-05-06 08:29:24 -07:00
ResumeAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
2018-03-19 11:45:28 -07:00
{
printer . Connection . Resume ( ) ;
} ) ,
2018-07-20 14:40:41 -07:00
ResumeToolTip = "Resume Print" . Localize ( ) ,
2018-05-06 08:29:24 -07:00
StopAction = ( ) = > UiThread . RunOnIdle ( ( ) = >
2018-03-19 11:45:28 -07:00
{
2018-09-24 11:09:56 -07:00
this . ConditionallyCancelPrint ( ) ;
2018-07-20 14:40:41 -07:00
} ) ,
StopToolTip = "Cancel Print" . Localize ( ) ,
2018-03-19 11:45:28 -07:00
} ) ;
}
2018-02-09 18:11:55 -08:00
/// <summary>
/// Archives MCX and validates GCode results before starting a print operation
/// </summary>
/// <param name="sourcePath">The source file which originally caused the slice->print operation</param>
/// <param name="gcodeFilePath">The resulting GCode to print</param>
2018-05-23 07:14:21 -07:00
private async void ArchiveAndStartPrint ( string sourcePath , string gcodeFilePath , PrinterConfig printer )
2017-06-16 18:04:47 -07:00
{
2018-02-09 18:11:55 -08:00
if ( File . Exists ( sourcePath )
& & File . Exists ( gcodeFilePath ) )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
bool originalIsGCode = Path . GetExtension ( sourcePath ) . ToUpper ( ) = = ".GCODE" ;
if ( File . Exists ( gcodeFilePath ) )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
// Create archive point for printing attempt
if ( Path . GetExtension ( sourcePath ) . ToUpper ( ) = = ".MCX" )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
// TODO: We should zip mcx and settings when starting a print
string platingDirectory = Path . Combine ( ApplicationDataStorage . Instance . ApplicationLibraryDataPath , "PrintHistory" ) ;
Directory . CreateDirectory ( platingDirectory ) ;
2017-06-16 18:04:47 -07:00
2018-05-23 06:23:13 -07:00
string now = "Workspace " + DateTime . Now . ToString ( "yyyy-MM-dd HH_mm_ss" ) ;
string archivePath = Path . Combine ( platingDirectory , now + ".zip" ) ;
2017-06-16 18:04:47 -07:00
2018-05-23 06:23:13 -07:00
using ( var file = File . OpenWrite ( archivePath ) )
using ( var zip = new ZipArchive ( file , ZipArchiveMode . Create ) )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
zip . CreateEntryFromFile ( sourcePath , "PrinterPlate.mcx" ) ;
zip . CreateEntryFromFile ( ActiveSliceSettings . Instance . DocumentPath , ActiveSliceSettings . Instance . GetValue ( SettingsKey . printer_name ) + ".printer" ) ;
zip . CreateEntryFromFile ( gcodeFilePath , "sliced.gcode" ) ;
2017-06-16 18:04:47 -07:00
}
2018-05-23 06:23:13 -07:00
}
if ( originalIsGCode )
{
2018-05-23 07:14:21 -07:00
await this . ActivePrinter . Connection . StartPrint ( gcodeFilePath ) ;
MonitorPrintTask ( printer ) ;
2018-05-23 06:23:13 -07:00
return ;
}
else
{
// read the last few k of the file and see if it says "filament used". We use this marker to tell if the file finished writing
int bufferSize = 32000 ;
using ( Stream fileStream = new FileStream ( gcodeFilePath , FileMode . Open , FileAccess . Read , FileShare . ReadWrite ) )
2017-06-16 18:04:47 -07:00
{
2018-05-23 06:23:13 -07:00
byte [ ] buffer = new byte [ bufferSize ] ;
fileStream . Seek ( Math . Max ( 0 , fileStream . Length - bufferSize ) , SeekOrigin . Begin ) ;
int numBytesRead = fileStream . Read ( buffer , 0 , bufferSize ) ;
fileStream . Close ( ) ;
2017-06-16 18:04:47 -07:00
2018-05-23 06:23:13 -07:00
string fileEnd = System . Text . Encoding . UTF8 . GetString ( buffer ) ;
if ( fileEnd . Contains ( "filament used" ) )
{
2018-05-23 07:14:21 -07:00
await this . ActivePrinter . Connection . StartPrint ( gcodeFilePath ) ;
MonitorPrintTask ( printer ) ;
2018-05-23 06:23:13 -07:00
return ;
2017-06-16 18:04:47 -07:00
}
}
}
}
2018-05-23 06:23:13 -07:00
this . ActivePrinter . Connection . CommunicationState = CommunicationStates . Connected ;
2017-06-16 18:04:47 -07:00
}
}
2018-05-23 06:49:58 -07:00
/// <summary>
/// Slice the given IObject3D to the target GCode file using the referenced printer settings
/// </summary>
/// <param name="printer">The printer/settings to use</param>
/// <param name="object3D">The IObject3D to slice</param>
/// <param name="gcodeFilePath">The path to write the file to</param>
/// <returns>A boolean indicating if the slicing operation completed without aborting</returns>
2018-05-26 12:16:23 -07:00
public async Task < ( bool , string ) > SliceItemLoadOutput ( PrinterConfig printer , IObject3D object3D , string gcodeFilePath )
2017-10-16 17:09:00 -07:00
{
// Slice
2018-02-01 21:42:09 -08:00
bool slicingSucceeded = false ;
2018-07-10 15:34:08 -07:00
await this . Tasks . Execute ( "Slicing" . Localize ( ) , async ( reporter , cancellationToken ) = >
2017-12-11 14:15:50 -08:00
{
2018-02-09 18:11:55 -08:00
slicingSucceeded = await Slicer . SliceItem (
2018-03-26 16:54:36 -07:00
object3D ,
gcodeFilePath ,
2017-12-11 14:15:50 -08:00
printer ,
2018-08-17 17:49:41 -07:00
reporter ,
2018-01-17 08:32:40 -08:00
cancellationToken ) ;
2017-12-11 14:15:50 -08:00
} ) ;
2018-02-01 21:42:09 -08:00
// Skip loading GCode output if slicing failed
if ( ! slicingSucceeded )
{
2018-05-26 12:16:23 -07:00
return ( false , gcodeFilePath ) ;
}
var postProcessors = printer . Bed . Scene . Children . OfType < IGCodePostProcessor > ( ) ;
if ( postProcessors . Any ( ) )
{
using ( var resultStream = File . OpenRead ( gcodeFilePath ) )
{
Stream contextStream = resultStream ;
// Execute each post processor
foreach ( var processor in postProcessors )
{
// Invoke the processor and store the resulting output to the context stream reference
contextStream = processor . ProcessOutput ( contextStream ) ;
// Reset to the beginning
contextStream . Position = 0 ;
}
// Modify final file name
gcodeFilePath = Path . ChangeExtension ( gcodeFilePath , GCodeFile . PostProcessedExtension ) ;
// Copy the final stream to the revised gcodeFilePath
using ( var finalStream = File . OpenWrite ( gcodeFilePath ) )
{
contextStream . CopyTo ( finalStream ) ;
}
}
2018-02-01 21:42:09 -08:00
}
2018-07-10 15:34:08 -07:00
await this . Tasks . Execute ( "Loading GCode" . Localize ( ) , ( innerProgress , token ) = >
2017-12-11 14:15:50 -08:00
{
2018-02-20 18:27:52 -08:00
var status = new ProgressStatus ( ) ;
2017-12-11 14:15:50 -08:00
innerProgress . Report ( status ) ;
printer . Bed . LoadGCode ( gcodeFilePath , token , ( progress0to1 , statusText ) = >
{
UiThread . RunOnIdle ( ( ) = >
{
status . Progress0To1 = progress0to1 ;
status . Status = statusText ;
innerProgress . Report ( status ) ;
} ) ;
} ) ;
return Task . CompletedTask ;
} ) ;
2018-05-23 06:49:58 -07:00
2018-05-26 12:16:23 -07:00
return ( slicingSucceeded , gcodeFilePath ) ;
2017-10-16 17:09:00 -07:00
}
2018-09-10 12:02:20 -07:00
internal void GetViewOptionButtons ( GuiWidget parent , BedConfig sceneContext , PrinterConfig printer , ThemeConfig theme )
2018-04-02 16:21:34 -07:00
{
2018-04-12 08:42:10 -07:00
var bedButton = new RadioIconButton ( AggContext . StaticData . LoadIcon ( "bed.png" , theme . InvertIcons ) , theme )
2018-04-02 16:21:34 -07:00
{
Name = "Bed Button" ,
ToolTipText = "Show Print Bed" . Localize ( ) ,
2018-04-05 18:46:31 -07:00
Checked = sceneContext . RendererOptions . RenderBed ,
2018-04-02 16:21:34 -07:00
Margin = theme . ButtonSpacing ,
2018-09-10 12:02:20 -07:00
VAnchor = VAnchor . Absolute ,
2018-04-02 16:21:34 -07:00
ToggleButton = true ,
2018-09-10 12:02:20 -07:00
Height = theme . ButtonHeight ,
Width = theme . ButtonHeight ,
2018-09-07 17:01:48 -07:00
SiblingRadioButtonList = new List < GuiWidget > ( )
2018-04-02 16:21:34 -07:00
} ;
bedButton . CheckedStateChanged + = ( s , e ) = >
{
2018-04-05 18:46:31 -07:00
sceneContext . RendererOptions . RenderBed = bedButton . Checked ;
2018-04-02 16:21:34 -07:00
} ;
2018-09-10 12:02:20 -07:00
parent . AddChild ( bedButton ) ;
2018-04-02 16:21:34 -07:00
2018-04-18 18:10:06 -07:00
Func < bool > buildHeightValid = ( ) = > sceneContext . BuildHeight > 0 ;
2018-04-04 10:11:57 -07:00
2018-04-18 18:10:06 -07:00
var printAreaButton = new RadioIconButton ( AggContext . StaticData . LoadIcon ( "print_area.png" , theme . InvertIcons ) , theme )
2018-04-02 16:21:34 -07:00
{
2018-04-18 18:10:06 -07:00
Name = "Bed Button" ,
ToolTipText = ( buildHeightValid ( ) ) ? "Show Print Area" . Localize ( ) : "Define printer build height to enable" ,
Checked = sceneContext . RendererOptions . RenderBuildVolume ,
Margin = theme . ButtonSpacing ,
2018-09-10 12:02:20 -07:00
VAnchor = VAnchor . Absolute ,
2018-04-18 18:10:06 -07:00
ToggleButton = true ,
Enabled = buildHeightValid ( ) & & printer ? . ViewState . ViewMode ! = PartViewMode . Layers2D ,
2018-09-10 12:02:20 -07:00
Height = theme . ButtonHeight ,
Width = theme . ButtonHeight ,
2018-09-07 17:01:48 -07:00
SiblingRadioButtonList = new List < GuiWidget > ( )
2018-04-18 18:10:06 -07:00
} ;
printAreaButton . CheckedStateChanged + = ( s , e ) = >
{
sceneContext . RendererOptions . RenderBuildVolume = printAreaButton . Checked ;
} ;
2018-09-10 12:02:20 -07:00
parent . AddChild ( printAreaButton ) ;
2018-04-02 16:21:34 -07:00
2018-09-10 12:02:20 -07:00
this . BindBedOptions ( parent , bedButton , printAreaButton , sceneContext . RendererOptions ) ;
2018-04-04 10:11:57 -07:00
2018-04-09 17:43:31 -07:00
if ( printer ! = null )
{
// Disable print area button in GCode2D view
EventHandler < ViewModeChangedEventArgs > viewModeChanged = ( s , e ) = >
{
2018-04-18 17:55:32 -07:00
// Button is conditionally created based on BuildHeight, only set enabled if created
2018-04-18 18:10:06 -07:00
printAreaButton . Enabled = buildHeightValid ( ) & & printer . ViewState . ViewMode ! = PartViewMode . Layers2D ;
2018-04-09 17:43:31 -07:00
} ;
printer . ViewState . ViewModeChanged + = viewModeChanged ;
2018-09-10 12:02:20 -07:00
parent . Closed + = ( s , e ) = >
2018-04-09 17:43:31 -07:00
{
printer . ViewState . ViewModeChanged - = viewModeChanged ;
} ;
}
2018-04-02 16:21:34 -07:00
}
2018-04-04 10:11:57 -07:00
public void BindBedOptions ( GuiWidget container , ICheckbox bedButton , ICheckbox printAreaButton , View3DConfig renderOptions )
{
PropertyChangedEventHandler syncProperties = ( s , e ) = >
{
switch ( e . PropertyName )
{
case nameof ( renderOptions . RenderBed ) :
bedButton . Checked = renderOptions . RenderBed ;
break ;
case nameof ( renderOptions . RenderBuildVolume ) when printAreaButton ! = null :
printAreaButton . Checked = renderOptions . RenderBuildVolume ;
break ;
}
} ;
renderOptions . PropertyChanged + = syncProperties ;
container . Closed + = ( s , e ) = >
{
renderOptions . PropertyChanged - = syncProperties ;
} ;
}
2017-09-16 01:11:44 -07:00
public class CloudSyncEventArgs : EventArgs
{
public bool IsAuthenticated { get ; set ; }
}
2017-08-07 14:19:28 -07:00
}
public class WidgetSourceEventArgs : EventArgs
{
public GuiWidget Source { get ; }
2017-06-16 18:04:47 -07:00
2017-08-07 14:19:28 -07:00
public WidgetSourceEventArgs ( GuiWidget source )
{
this . Source = source ;
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}
2017-09-16 01:11:44 -07:00
public class DragDropData
{
public View3DWidget View3DWidget { get ; set ; }
2017-09-23 09:19:32 -07:00
public PrinterConfig Printer { get ; internal set ; }
2017-10-05 22:32:23 -07:00
public BedConfig SceneContext { get ; set ; }
2017-09-16 01:11:44 -07:00
}
2017-12-11 14:15:50 -08:00
public class RunningTaskDetails : IProgress < ProgressStatus >
{
public event EventHandler < ProgressStatus > ProgressChanged ;
2017-12-12 17:53:32 -08:00
public Func < GuiWidget > DetailsItemAction { get ; set ; }
2017-12-11 22:22:56 -08:00
2018-05-07 13:12:32 -07:00
private CancellationTokenSource tokenSource ;
private bool? _isExpanded = null ;
2017-12-11 14:15:50 -08:00
public RunningTaskDetails ( CancellationTokenSource tokenSource )
{
this . tokenSource = tokenSource ;
}
public string Title { get ; set ; }
2018-04-09 16:59:17 -07:00
2018-05-06 08:29:24 -07:00
public RunningTaskOptions Options { get ; internal set ; }
2017-12-11 14:15:50 -08:00
2018-05-07 13:12:32 -07:00
public bool IsExpanded
{
get
{
if ( _isExpanded = = null )
{
if ( this . Options is RunningTaskOptions options
& & ! string . IsNullOrWhiteSpace ( options . ExpansionSerializationKey ) )
{
string dbValue = UserSettings . Instance . get ( options . ExpansionSerializationKey ) ;
_isExpanded = dbValue ! = "0" ;
}
else
{
_isExpanded = false ;
}
}
return _isExpanded ? ? false ;
}
set
{
_isExpanded = value ;
if ( this . Options ? . ExpansionSerializationKey is string expansionKey
& & ! string . IsNullOrWhiteSpace ( expansionKey ) )
{
UserSettings . Instance . set ( expansionKey , ( _isExpanded ? ? false ) ? "1" : "0" ) ;
}
}
}
2017-12-11 14:15:50 -08:00
public void Report ( ProgressStatus progressStatus )
{
this . ProgressChanged ? . Invoke ( this , progressStatus ) ;
}
public void CancelTask ( )
{
this . tokenSource . Cancel ( ) ;
}
}
2018-05-06 08:29:24 -07:00
public class RunningTaskOptions
2017-12-12 17:53:32 -08:00
{
2018-05-07 13:12:32 -07:00
/// <summary>
/// The Rich progress widget to be shown when expanded
/// </summary>
2017-12-12 17:53:32 -08:00
public Func < GuiWidget > RichProgressWidget { get ; set ; }
2018-05-07 13:12:32 -07:00
/// <summary>
/// The database key used to round trip expansion state
/// </summary>
public string ExpansionSerializationKey { get ; set ; }
2018-09-17 14:31:26 -07:00
/// <summary>
/// Set this if you would like to update the stated of the pause resume button
/// </summary>
public Func < bool > IsPaused { get ; set ; }
2018-05-06 08:29:24 -07:00
public Action PauseAction { get ; set ; }
public Action ResumeAction { get ; set ; }
public Action StopAction { get ; set ; }
2018-04-09 16:59:17 -07:00
2018-07-20 14:40:41 -07:00
public string StopToolTip { get ; set ; } = "Cancel" . Localize ( ) ;
public string ResumeToolTip { get ; set ; } = "Resume" . Localize ( ) ;
public string PauseToolTip { get ; set ; } = "Pause" . Localize ( ) ;
2018-04-09 16:59:17 -07:00
/// <summary>
/// Indicates if the task should suppress pause/resume/stop operations
/// </summary>
public bool ReadOnlyReporting { get ; set ; } = false ;
2017-12-12 17:53:32 -08:00
}
2017-12-11 14:15:50 -08:00
public class RunningTasksConfig
{
public event EventHandler TasksChanged ;
private ObservableCollection < RunningTaskDetails > executingTasks = new ObservableCollection < RunningTaskDetails > ( ) ;
public IEnumerable < RunningTaskDetails > RunningTasks = > executingTasks . ToList ( ) ;
public RunningTasksConfig ( )
{
executingTasks . CollectionChanged + = ( s , e ) = >
{
2018-05-29 17:46:59 -07:00
UiThread . RunOnIdle ( ( ) = > this . TasksChanged ? . Invoke ( this , null ) ) ;
2017-12-11 14:15:50 -08:00
} ;
}
2018-05-06 08:29:24 -07:00
public Task Execute ( string taskTitle , Func < IProgress < ProgressStatus > , CancellationToken , Task > func , RunningTaskOptions taskActions = null )
2017-12-11 14:15:50 -08:00
{
var tokenSource = new CancellationTokenSource ( ) ;
2017-12-11 22:22:56 -08:00
var taskDetails = new RunningTaskDetails ( tokenSource )
{
2018-05-06 08:29:24 -07:00
Options = taskActions ,
2018-02-20 18:27:52 -08:00
Title = taskTitle
2017-12-11 22:22:56 -08:00
} ;
2017-12-11 14:15:50 -08:00
executingTasks . Add ( taskDetails ) ;
return Task . Run ( async ( ) = >
{
2017-12-12 18:18:39 -08:00
try
{
await func ? . Invoke ( taskDetails , tokenSource . Token ) ;
}
catch
{
}
2017-12-11 14:15:50 -08:00
2018-07-12 12:26:37 -07:00
UiThread . RunOnIdle ( ( ) = >
{
executingTasks . Remove ( taskDetails ) ;
} ) ;
2017-12-11 14:15:50 -08:00
} ) ;
}
}
2017-12-16 13:56:59 -08:00
2017-12-18 17:22:50 -08:00
public enum ReportSeverity2 { Warning , Error }
public static class Application
2017-12-16 13:56:59 -08:00
{
2017-12-18 17:22:50 -08:00
private static ProgressBar progressBar ;
private static TextWidget statusText ;
private static FlowLayoutWidget progressPanel ;
private static string lastSection = "" ;
private static Stopwatch timer ;
2017-12-16 13:56:59 -08:00
2017-12-18 17:22:50 -08:00
public static SystemWindow LoadRootWindow ( int width , int height )
2017-12-16 13:56:59 -08:00
{
2017-12-18 17:22:50 -08:00
timer = Stopwatch . StartNew ( ) ;
2017-12-16 13:56:59 -08:00
2018-02-21 15:23:54 -08:00
var systemWindow = new RootSystemWindow ( width , height ) ;
2017-12-18 17:22:50 -08:00
2018-05-08 17:22:49 -07:00
// Load theme
ApplicationController . LoadTheme ( ) ;
2018-02-26 17:48:15 -08:00
var overlay = new GuiWidget ( )
{
2018-05-16 12:03:21 -07:00
BackgroundColor = ActiveTheme . Instance . PrimaryBackgroundColor
2018-02-26 17:48:15 -08:00
} ;
2017-12-18 17:22:50 -08:00
overlay . AnchorAll ( ) ;
systemWindow . AddChild ( overlay ) ;
2018-05-16 12:03:21 -07:00
var mutedAccentColor = new Color ( ActiveTheme . Instance . PrimaryAccentColor , 185 ) . OverlayOn ( Color . White ) . ToColor ( ) ;
2018-05-14 11:43:06 -07:00
var spinner = new LogoSpinner ( overlay , rotateX : - 0.05 )
{
MeshColor = mutedAccentColor
} ;
2018-02-21 15:23:54 -08:00
2017-12-18 17:22:50 -08:00
progressPanel = new FlowLayoutWidget ( FlowDirection . TopToBottom )
2017-12-16 13:56:59 -08:00
{
2018-04-23 14:33:27 -07:00
Position = new Vector2 ( 0 , height * . 25 ) ,
2018-02-21 15:23:54 -08:00
HAnchor = HAnchor . Center | HAnchor . Fit ,
VAnchor = VAnchor . Fit ,
2018-03-08 17:23:03 -08:00
MinimumSize = new Vector2 ( 400 , 100 ) ,
2018-02-21 15:23:54 -08:00
Margin = new BorderDouble ( 0 , 0 , 0 , 200 )
2017-12-18 17:22:50 -08:00
} ;
overlay . AddChild ( progressPanel ) ;
2017-12-16 13:56:59 -08:00
2018-05-16 12:03:21 -07:00
progressPanel . AddChild ( statusText = new TextWidget ( "" , textColor : ActiveTheme . Instance . PrimaryTextColor )
2017-12-18 17:22:50 -08:00
{
2018-02-27 08:46:54 -08:00
MinimumSize = new Vector2 ( 200 , 30 ) ,
2018-02-21 15:23:54 -08:00
HAnchor = HAnchor . Center ,
AutoExpandBoundsToText = true
2017-12-18 17:22:50 -08:00
} ) ;
progressPanel . AddChild ( progressBar = new ProgressBar ( )
{
2018-05-14 11:43:06 -07:00
FillColor = mutedAccentColor ,
2018-05-16 12:03:21 -07:00
BorderColor = Color . Gray , // theme.GetBorderColor(75),
2017-12-18 17:22:50 -08:00
Height = 11 ,
2018-02-27 08:46:54 -08:00
Width = 230 ,
2018-02-21 15:23:54 -08:00
HAnchor = HAnchor . Center ,
2017-12-18 17:22:50 -08:00
VAnchor = VAnchor . Absolute
} ) ;
AppContext . RootSystemWindow = systemWindow ;
2018-04-23 14:33:27 -07:00
// hook up a keyboard watcher to rout keys when not handled by children
2018-05-03 14:14:17 -07:00
systemWindow . KeyPressed + = ( s , keyEvent ) = >
2018-04-23 14:33:27 -07:00
{
2018-04-23 18:48:17 -07:00
var view3D = systemWindow . Descendants < View3DWidget > ( ) . Where ( ( v ) = > v . ActuallyVisibleOnScreen ( ) ) . FirstOrDefault ( ) ;
var printerTabPage = systemWindow . Descendants < PrinterTabPage > ( ) . Where ( ( v ) = > v . ActuallyVisibleOnScreen ( ) ) . FirstOrDefault ( ) ;
2018-04-23 14:33:27 -07:00
var offsetDist = 50 ;
2018-04-29 11:08:09 -07:00
if ( ! keyEvent . Handled
2018-04-23 14:33:27 -07:00
& & view3D ! = null )
{
2018-05-03 14:14:17 -07:00
switch ( keyEvent . KeyChar )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
case 'w' :
case 'W' :
view3D . ResetView ( ) ;
keyEvent . Handled = true ;
break ;
case ' ' :
view3D . Scene . ClearSelection ( ) ;
keyEvent . Handled = true ;
break ;
}
}
} ;
systemWindow . KeyDown + = ( s , keyEvent ) = >
{
var view3D = systemWindow . Descendants < View3DWidget > ( ) . Where ( ( v ) = > v . ActuallyVisibleOnScreen ( ) ) . FirstOrDefault ( ) ;
var printerTabPage = systemWindow . Descendants < PrinterTabPage > ( ) . Where ( ( v ) = > v . ActuallyVisibleOnScreen ( ) ) . FirstOrDefault ( ) ;
var offsetDist = 50 ;
var arrowKeyOpperation = keyEvent . Shift ? TrackBallTransformType . Translation : TrackBallTransformType . Rotation ;
2018-06-04 15:04:15 -07:00
var gcode2D = systemWindow . Descendants < GCode2DWidget > ( ) . Where ( ( v ) = > v . ActuallyVisibleOnScreen ( ) ) . FirstOrDefault ( ) ;
2018-06-05 09:13:21 -07:00
if ( keyEvent . KeyCode = = Keys . F1 )
{
UiThread . RunOnIdle ( ( ) = >
{
2018-06-30 23:26:57 -07:00
DialogWindow . Show ( new HelpPage ( "AllGuides" ) ) ;
2018-06-05 09:13:21 -07:00
} ) ;
}
if ( ! keyEvent . Handled
2018-06-04 15:04:15 -07:00
& & gcode2D ! = null )
{
switch ( keyEvent . KeyCode )
{
case Keys . Oemplus :
case Keys . Add :
if ( keyEvent . Control )
{
// Zoom out
gcode2D . Zoom ( 1.2 ) ;
keyEvent . Handled = true ;
}
break ;
case Keys . OemMinus :
case Keys . Subtract :
if ( keyEvent . Control )
{
// Zoom in
gcode2D . Zoom ( . 8 ) ;
keyEvent . Handled = true ;
}
break ;
}
}
2018-05-06 14:20:16 -07:00
if ( ! keyEvent . Handled
& & view3D ! = null )
{
switch ( keyEvent . KeyCode )
{
case Keys . C :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
view3D . Scene . Copy ( ) ;
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . X :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
view3D . Scene . Cut ( ) ;
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . Y :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
view3D . Scene . UndoBuffer . Redo ( ) ;
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . A :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
view3D . SelectAll ( ) ;
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . S :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
view3D . Save ( ) ;
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . V :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
view3D . Scene . Paste ( ) ;
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
}
break ;
2018-06-04 15:04:15 -07:00
case Keys . Oemplus :
case Keys . Add :
if ( keyEvent . Control )
{
// Zoom out
Offset3DView ( view3D , new Vector2 ( 0 , offsetDist ) , TrackBallTransformType . Scale ) ;
keyEvent . Handled = true ;
}
break ;
case Keys . OemMinus :
case Keys . Subtract :
if ( keyEvent . Control )
{
// Zoom in
Offset3DView ( view3D , new Vector2 ( 0 , - offsetDist ) , TrackBallTransformType . Scale ) ;
keyEvent . Handled = true ;
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . Z :
if ( keyEvent . Control )
2018-04-23 14:33:27 -07:00
{
2018-05-06 14:20:16 -07:00
if ( keyEvent . Shift )
{
view3D . Scene . UndoBuffer . Redo ( ) ;
}
else
{
// undo last operation
view3D . Scene . UndoBuffer . Undo ( ) ;
}
keyEvent . Handled = true ;
2018-04-23 14:33:27 -07:00
}
break ;
2018-05-06 14:20:16 -07:00
case Keys . Insert :
if ( keyEvent . Shift )
{
view3D . Scene . Paste ( ) ;
keyEvent . Handled = true ;
}
2018-05-03 14:14:17 -07:00
break ;
2018-04-23 14:33:27 -07:00
case Keys . Delete :
case Keys . Back :
view3D . Scene . DeleteSelection ( ) ;
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
break ;
case Keys . Escape :
if ( view3D . CurrentSelectInfo . DownOnPart )
{
view3D . CurrentSelectInfo . DownOnPart = false ;
view3D . Scene . SelectedItem . Matrix = view3D . TransformOnMouseDown ;
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
}
2018-06-12 10:03:37 -07:00
foreach ( var interactionVolume in view3D . InteractionLayer . InteractionVolumes )
{
interactionVolume . CancelOpperation ( ) ;
}
2018-04-23 14:33:27 -07:00
break ;
case Keys . Left :
2018-04-29 11:08:09 -07:00
// move or rotate view left
2018-04-23 14:33:27 -07:00
Offset3DView ( view3D , new Vector2 ( - offsetDist , 0 ) , arrowKeyOpperation ) ;
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
break ;
case Keys . Right :
Offset3DView ( view3D , new Vector2 ( offsetDist , 0 ) , arrowKeyOpperation ) ;
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
break ;
case Keys . Up :
2018-04-23 18:48:17 -07:00
if ( view3D . Printer ! = null
& & printerTabPage ! = null
& & view3D . Printer . ViewState . ViewMode ! = PartViewMode . Model )
{
printerTabPage . LayerScrollbar . Value + = 1 ;
}
else
{
Offset3DView ( view3D , new Vector2 ( 0 , offsetDist ) , arrowKeyOpperation ) ;
}
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
break ;
case Keys . Down :
2018-04-23 18:48:17 -07:00
if ( view3D . Printer ! = null
& & printerTabPage ! = null
& & view3D . Printer . ViewState . ViewMode ! = PartViewMode . Model )
{
printerTabPage . LayerScrollbar . Value - = 1 ;
}
else
{
Offset3DView ( view3D , new Vector2 ( 0 , - offsetDist ) , arrowKeyOpperation ) ;
}
2018-04-23 14:33:27 -07:00
keyEvent . Handled = true ;
keyEvent . SuppressKeyPress = true ;
break ;
}
}
} ;
2017-12-18 17:22:50 -08:00
// Hook SystemWindow load and spin up MatterControl once we've hit first draw
systemWindow . Load + = ( s , e ) = >
2017-12-16 13:56:59 -08:00
{
2017-12-18 17:22:50 -08:00
ReportStartupProgress ( 0.02 , "First draw->RunOnIdle" ) ;
//UiThread.RunOnIdle(() =>
2017-12-20 18:25:12 -08:00
Task . Run ( async ( ) = >
2017-12-16 13:56:59 -08:00
{
2018-03-28 18:05:06 -07:00
try
2017-12-18 17:22:50 -08:00
{
2018-03-28 18:05:06 -07:00
ReportStartupProgress ( 0.15 , "MatterControlApplication.Initialize" ) ;
var mainView = await Initialize ( systemWindow , ( progress0To1 , status ) = >
{
ReportStartupProgress ( 0.2 + progress0To1 * 0.7 , status ) ;
} ) ;
2018-07-30 11:50:22 -07:00
ApplicationController . LoadTranslationMap ( ) ;
2018-03-28 18:05:06 -07:00
ReportStartupProgress ( 0.9 , "AddChild->MainView" ) ;
systemWindow . AddChild ( mainView , 0 ) ;
ReportStartupProgress ( 1 , "" ) ;
systemWindow . BackgroundColor = Color . Transparent ;
overlay . Close ( ) ;
}
catch ( Exception ex )
{
UiThread . RunOnIdle ( ( ) = >
{
statusText . Visible = false ;
2017-12-18 17:22:50 -08:00
2018-03-28 18:05:06 -07:00
var errorTextColor = Color . White ;
2018-03-21 17:17:36 -07:00
2018-03-28 18:05:06 -07:00
progressPanel . Margin = 0 ;
progressPanel . VAnchor = VAnchor . Center | VAnchor . Fit ;
progressPanel . BackgroundColor = Color . DarkGray ;
progressPanel . Padding = 20 ;
progressPanel . Border = 1 ;
progressPanel . BorderColor = Color . Red ;
2017-12-18 17:22:50 -08:00
2018-05-16 12:03:21 -07:00
var theme = new ThemeConfig ( ) ;
2018-03-28 18:05:06 -07:00
progressPanel . AddChild (
new TextWidget ( "Startup Failure" . Localize ( ) + ":" , pointSize : theme . DefaultFontSize , textColor : errorTextColor ) ) ;
progressPanel . AddChild (
new TextWidget ( ex . Message , pointSize : theme . FontSize9 , textColor : errorTextColor ) ) ;
2018-04-12 08:42:10 -07:00
var closeButton = new TextButton ( "Close" , theme )
2018-03-28 18:05:06 -07:00
{
BackgroundColor = theme . SlightShade ,
HAnchor = HAnchor . Right ,
VAnchor = VAnchor . Absolute
} ;
closeButton . Click + = ( s1 , e1 ) = >
{
systemWindow . Close ( ) ;
} ;
spinner . SpinLogo = false ;
progressBar . Visible = false ;
progressPanel . AddChild ( closeButton ) ;
} ) ;
}
2017-12-18 17:22:50 -08:00
2017-12-27 05:42:28 -08:00
AppContext . IsLoading = false ;
2017-12-18 17:22:50 -08:00
} ) ;
} ;
ReportStartupProgress ( 0 , "ShowAsSystemWindow" ) ;
return systemWindow ;
2017-12-16 13:56:59 -08:00
}
2018-04-23 14:33:27 -07:00
private static void Offset3DView ( View3DWidget view3D , Vector2 offset , TrackBallTransformType opperation )
{
var center = view3D . TrackballTumbleWidget . LocalBounds . Center ;
2018-04-29 11:08:09 -07:00
2018-04-23 14:33:27 -07:00
view3D . TrackballTumbleWidget . TrackBallController . OnMouseDown ( center , Matrix4X4 . Identity , opperation ) ;
view3D . TrackballTumbleWidget . TrackBallController . OnMouseMove ( center + offset ) ;
view3D . TrackballTumbleWidget . TrackBallController . OnMouseUp ( ) ;
view3D . TrackballTumbleWidget . Invalidate ( ) ;
}
2017-12-20 18:25:12 -08:00
public static async Task < GuiWidget > Initialize ( SystemWindow systemWindow , Action < double , string > reporter )
2017-12-16 13:56:59 -08:00
{
2017-12-18 17:22:50 -08:00
reporter ? . Invoke ( 0.01 , "PlatformInit" ) ;
AppContext . Platform . PlatformInit ( ( status ) = >
{
reporter ? . Invoke ( 0.01 , status ) ;
} ) ;
// TODO: Appears to be unused and should be removed
// set this at startup so that we can tell next time if it got set to true in close
UserSettings . Instance . Fields . StartCount = UserSettings . Instance . Fields . StartCount + 1 ;
reporter ? . Invoke ( 0.05 , "ApplicationController" ) ;
2018-07-12 09:22:28 -07:00
var applicationController = ApplicationController . Instance ;
2017-12-18 17:22:50 -08:00
// Accessing any property on ProfileManager will run the static constructor and spin up the ProfileManager instance
reporter ? . Invoke ( 0.2 , "ProfileManager" ) ;
bool na2 = ProfileManager . Instance . IsGuestProfile ;
2017-12-20 18:25:12 -08:00
await ProfileManager . Instance . Initialize ( ) ;
2017-12-18 17:22:50 -08:00
reporter ? . Invoke ( 0.3 , "MainView" ) ;
2018-07-12 09:22:28 -07:00
applicationController . MainView = new WidescreenPanel ( applicationController . Theme ) ;
2017-12-18 17:22:50 -08:00
// now that we are all set up lets load our plugins and allow them their chance to set things up
reporter ? . Invoke ( 0.8 , "Plugins" ) ;
AppContext . Platform . FindAndInstantiatePlugins ( systemWindow ) ;
reporter ? . Invoke ( 0.91 , "OnLoadActions" ) ;
2018-07-12 09:22:28 -07:00
applicationController . OnLoadActions ( ) ;
2017-12-18 17:22:50 -08:00
2018-03-20 18:25:40 -07:00
UiThread . SetInterval ( ( ) = >
{
2018-07-12 09:22:28 -07:00
applicationController . ActivePrinter . Connection . OnIdle ( ) ;
2018-04-11 17:35:34 -07:00
} , . 1 ) ;
2017-12-18 17:22:50 -08:00
2018-07-12 09:22:28 -07:00
return applicationController . MainView ;
2017-12-16 13:56:59 -08:00
}
2017-12-18 17:22:50 -08:00
private static void ReportStartupProgress ( double progress0To1 , string section )
2017-12-16 13:56:59 -08:00
{
2017-12-18 18:36:41 -08:00
UiThread . RunOnIdle ( ( ) = >
{
statusText . Text = section ;
progressBar . RatioComplete = progress0To1 ;
progressPanel . Invalidate ( ) ;
2017-12-18 17:22:50 -08:00
2017-12-18 18:36:41 -08:00
Console . WriteLine ( $"Time to '{lastSection}': {timer.ElapsedMilliseconds}" ) ;
timer . Restart ( ) ;
2017-12-18 17:22:50 -08:00
2017-12-18 18:36:41 -08:00
lastSection = section ;
} ) ;
2017-12-16 13:56:59 -08:00
}
}
Move to new library model and view
- Add new listview control for library content
- Migrate library providers to containers
- Cloud, Sqlite, Directories, Queue, History
- Migrate SideBar components to containers
- Primatives, Text, Braille, ImageConverter
- Create new library container types
- Zip files, Calibration parts, Printer SDCards
- Reduce leftnav to Library, Settings, Controls, Options
- Add DragDrop support for image content
2017-05-19 22:33:55 -07:00
}