2019-06-16 23:34:47 +00:00
|
|
|
<!--
|
|
|
|
Copyright 2019 faddenSoft
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2019-07-20 20:28:10 +00:00
|
|
|
<Window x:Class="SourceGen.WpfGui.EditAddress"
|
2019-06-16 23:34:47 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2021-09-22 21:39:39 +00:00
|
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
2019-07-20 20:28:10 +00:00
|
|
|
xmlns:local="clr-namespace:SourceGen.WpfGui"
|
2019-06-16 23:34:47 +00:00
|
|
|
mc:Ignorable="d"
|
ORG rework, part 5
Updated project file format to save the new map entries.
Tweaked appearance of .arend directives to show the .arstart address
in the operand field. This makes it easier to match them up on screen.
Also, add a synthetic comment on auto-generated .arstart entries.
Added .arstart/.arend to the things that respond to Jump to Operand
(Ctrl+J). Selecting one jumps to the other end. (Well, it jumps
to the code nearest the other, which will do for now.)
Added a menu item to display a text rendering of the address map.
Helpful when things get complicated.
Modified the linear map iterator to return .arend items with the offset
of the last byte in the region, rather than the first byte of the
following region. While the "exclusive end" approach is pretty
common, it caused problems when updating the line list, because it
meant that the .arend directives were outside the range of offsets
being updated (and, for directives at the end of the file, outside
the file itself). This was painful to deal with for partial updates.
Changing this required some relatively subtle changes and annoyed some
of the debug assertions, such as the one where all Line items have
offsets that match the start of a line, but it's the cleaner approach.
2021-09-28 00:02:18 +00:00
|
|
|
Title="Edit Address Region Properties"
|
2021-09-27 00:06:43 +00:00
|
|
|
Width="350" SizeToContent="Height" ResizeMode="NoResize"
|
2019-06-16 23:34:47 +00:00
|
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
2019-07-21 22:24:39 +00:00
|
|
|
ContentRendered="Window_ContentRendered">
|
2019-06-16 23:34:47 +00:00
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<Window.Resources>
|
2021-09-27 00:06:43 +00:00
|
|
|
<BooleanToVisibilityConverter x:Key="BoolToVis"/>
|
|
|
|
|
|
|
|
<system:String x:Key="str_HdrCreate">Creating new address region</system:String>
|
|
|
|
<system:String x:Key="str_HdrEdit">Editing existing address region:</system:String>
|
|
|
|
|
2021-10-02 20:47:05 +00:00
|
|
|
<system:String x:Key="str_OptEditAsIsSummary">
|
|
|
|
Edit only.
|
|
|
|
</system:String>
|
2021-09-27 00:06:43 +00:00
|
|
|
<system:String x:Key="str_OptEditAsIs">
|
|
|
|
Edit the region's attributes. Region length will not be changed.
|
|
|
|
</system:String>
|
2021-10-02 20:47:05 +00:00
|
|
|
<system:String x:Key="str_OptEditAndFixSummary">
|
|
|
|
Set fixed size.
|
|
|
|
</system:String>
|
2021-09-27 00:06:43 +00:00
|
|
|
<system:String x:Key="str_OptEditAndFix">
|
|
|
|
Edit the region's attributes, and convert the floating end to a fixed end.
|
|
|
|
</system:String>
|
2021-10-02 20:47:05 +00:00
|
|
|
<system:String x:Key="str_OptResizeSummary">
|
|
|
|
Resize.
|
|
|
|
</system:String>
|
2021-10-11 21:44:44 +00:00
|
|
|
<system:String x:Key="str_OptResize" xml:space="preserve"
|
|
|
|
>Edit the region's attributes, and resize it to the selection. The new end offset will be:
End: {0}
Length: {1}</system:String>
|
ORG rework, part 6
Added support for non-addressable regions, which are useful for things
like file headers stripped out by the system loader, or chunks that
get loaded into non-addressable graphics RAM. Regions are specified
with the "NA" address value. The code list displays the address field
greyed out, starting from zero (which is kind of handy if you want to
know the relative offset within the region).
Putting labels in non-addressable regions doesn't make sense, but
symbol resolution is complicated enough that we really only have two
options: ignore the labels entirely, or allow them but warn of their
presence. The problem isn't so much the label, which you could
legitimately want to access from an extension script, but rather the
references to them from code or data. So we keep the label and add a
warning to the Messages list when we see a reference.
Moved NON_ADDR constants to Address class. AddressMap now has a copy.
This is awkward because Asm65 and CommonUtil don't share.
Updated the asm code generators to understand NON_ADDR, and reworked
the API so that Merlin and cc65 output is correct for nested regions.
Address region changes are now noted in the anattribs array, which
makes certain operations faster than checking the address map. It
also fixes a failure to recognize mid-instruction region changes in
the code analyzer.
Tweaked handling of synthetic regions, which are non-addressable areas
generated by the linear address map traversal to fill in any "holes".
The address region editor now treats attempts to edit them as
creation of a new region.
2021-10-01 01:07:21 +00:00
|
|
|
<system:String x:Key="str_OptResizeFail">
|
2021-10-02 20:47:05 +00:00
|
|
|
Resize not available: cannot resize to the selection. {0}
|
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_CreateFixedSummary">
|
|
|
|
Create fixed.
|
ORG rework, part 6
Added support for non-addressable regions, which are useful for things
like file headers stripped out by the system loader, or chunks that
get loaded into non-addressable graphics RAM. Regions are specified
with the "NA" address value. The code list displays the address field
greyed out, starting from zero (which is kind of handy if you want to
know the relative offset within the region).
Putting labels in non-addressable regions doesn't make sense, but
symbol resolution is complicated enough that we really only have two
options: ignore the labels entirely, or allow them but warn of their
presence. The problem isn't so much the label, which you could
legitimately want to access from an extension script, but rather the
references to them from code or data. So we keep the label and add a
warning to the Messages list when we see a reference.
Moved NON_ADDR constants to Address class. AddressMap now has a copy.
This is awkward because Asm65 and CommonUtil don't share.
Updated the asm code generators to understand NON_ADDR, and reworked
the API so that Merlin and cc65 output is correct for nested regions.
Address region changes are now noted in the anattribs array, which
makes certain operations faster than checking the address map. It
also fixes a failure to recognize mid-instruction region changes in
the code analyzer.
Tweaked handling of synthetic regions, which are non-addressable areas
generated by the linear address map traversal to fill in any "holes".
The address region editor now treats attempts to edit them as
creation of a new region.
2021-10-01 01:07:21 +00:00
|
|
|
</system:String>
|
2021-09-27 00:06:43 +00:00
|
|
|
<system:String x:Key="str_CreateFixed">
|
|
|
|
Create a new region, with a fixed end point. The region will start at {0}
|
|
|
|
and have a length of {1}.
|
|
|
|
</system:String>
|
2021-10-02 20:47:05 +00:00
|
|
|
<system:String x:Key="str_CreateFixedAlreadyFixed">
|
|
|
|
Create fixed not available: can't convert to fixed end point because it's already fixed.
|
|
|
|
</system:String>
|
2021-09-27 00:06:43 +00:00
|
|
|
<system:String x:Key="str_CreateFixedFail">
|
2021-10-02 20:47:05 +00:00
|
|
|
Create fixed not available: unable to create a new region with a fixed end point here.
|
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_CreateFixedFailStraddle">
|
|
|
|
Create fixed not available: unable to create a new region with a fixed end point
|
|
|
|
here, because it would straddle an existing region.
|
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_CreateFloatingSummary">
|
|
|
|
Create floating.
|
2021-09-27 00:06:43 +00:00
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_CreateFloating">
|
|
|
|
Create a new region, with a floating end point. The region will start at {0}
|
|
|
|
and end at the next region boundary. Currently, the length is {1}, but that
|
|
|
|
may change as other regions are added and removed.
|
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_CreateFloatingFail">
|
2021-10-02 20:47:05 +00:00
|
|
|
Create floating not available: unable to create a new region with a floating end point here.
|
2021-09-27 00:06:43 +00:00
|
|
|
</system:String>
|
|
|
|
|
|
|
|
<system:String x:Key="str_ErrInternal">Internal error.</system:String>
|
|
|
|
<system:String x:Key="str_ErrInvalidValue">Internal error (invalid value).</system:String>
|
|
|
|
<system:String x:Key="str_ErrOverlapExisting">
|
2021-10-02 20:47:05 +00:00
|
|
|
The new region would have the same start offset and length as an existing region.
|
2021-09-27 00:06:43 +00:00
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_ErrOverlapFloating">
|
|
|
|
The start offset of the new region is the same as the start offset of an existing
|
|
|
|
region, and one or both have a floating end point.
|
|
|
|
</system:String>
|
|
|
|
<system:String x:Key="str_ErrStraddleExisting">
|
|
|
|
The new region straddles the start or end of an existing region.
|
|
|
|
</system:String>
|
2021-09-22 21:39:39 +00:00
|
|
|
</Window.Resources>
|
|
|
|
|
2019-06-16 23:34:47 +00:00
|
|
|
<StackPanel Margin="8">
|
2021-10-02 20:47:05 +00:00
|
|
|
<TextBlock Text="{Binding OperationStr, FallbackValue=Editing existing address region:}"/>
|
2021-09-27 00:06:43 +00:00
|
|
|
<Grid Visibility="{Binding ShowExistingRegion, Converter={StaticResource BoolToVis}}">
|
2021-09-22 21:39:39 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition Height="Auto"/>
|
2021-09-27 00:06:43 +00:00
|
|
|
<RowDefinition Height="Auto"/>
|
2021-09-22 21:39:39 +00:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Grid.Column="0" Grid.Row="0" Margin="8,0,0,0" Text="Start:"/>
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="0" Margin="4,2,0,0"
|
|
|
|
Text="{Binding RegionStartOffsetStr, FallbackValue=+123456}"
|
2019-12-26 01:15:37 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="1" Margin="8,0,0,0" Text="End:"/>
|
2021-09-27 00:06:43 +00:00
|
|
|
<StackPanel Grid.Column="1" Grid.Row="1" Margin="4,0,0,0" Orientation="Horizontal">
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Margin="0,2,0,0"
|
2021-09-27 00:06:43 +00:00
|
|
|
Text="{Binding RegionEndOffsetStr, FallbackValue=+123456}"
|
2019-12-26 01:15:37 +00:00
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
2021-09-22 21:39:39 +00:00
|
|
|
<TextBlock Text="(floating)" Margin="4,0,0,0" FontWeight="Bold"
|
2021-09-27 00:06:43 +00:00
|
|
|
Visibility="{Binding IsFloating, Converter={StaticResource BoolToVis}}"/>
|
2019-12-26 01:15:37 +00:00
|
|
|
</StackPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
2021-09-27 00:06:43 +00:00
|
|
|
<TextBlock Grid.Column="0" Grid.Row="2" Margin="8,0,0,0" Text="Length:"/>
|
|
|
|
<TextBlock Grid.Column="1" Grid.Row="2" Margin="4,2,0,0"
|
|
|
|
Text="{Binding RegionLengthStr, FallbackValue=23456 ($1234)}"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
</Grid>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
2021-09-27 00:06:43 +00:00
|
|
|
<RadioButton Name="radioOption1" Margin="0,12,0,0"
|
|
|
|
Visibility="{Binding ShowOption1, Converter={StaticResource BoolToVis}}"
|
|
|
|
IsEnabled="{Binding EnableOption1}"
|
|
|
|
IsChecked="{Binding CheckOption1}">
|
|
|
|
<RadioButton.Content>
|
2021-10-02 20:47:05 +00:00
|
|
|
<TextBlock Name="option1TextBlock" TextWrapping="Wrap" Text="Option 1"/>
|
2021-09-27 00:06:43 +00:00
|
|
|
</RadioButton.Content>
|
|
|
|
</RadioButton>
|
|
|
|
<RadioButton Name="radioOption2" Margin="0,4,0,0"
|
|
|
|
Visibility="{Binding ShowOption2, Converter={StaticResource BoolToVis}}"
|
|
|
|
IsEnabled="{Binding EnableOption2}"
|
|
|
|
IsChecked="{Binding CheckOption2}">
|
|
|
|
<RadioButton.Content>
|
2021-10-02 20:47:05 +00:00
|
|
|
<TextBlock Name="option2TextBlock" TextWrapping="Wrap" Text="Option 2"/>
|
2021-09-27 00:06:43 +00:00
|
|
|
</RadioButton.Content>
|
|
|
|
</RadioButton>
|
|
|
|
|
|
|
|
<Border Visibility="{Binding ShowErrorMessage, Converter={StaticResource BoolToVis}}"
|
|
|
|
BorderThickness="1" Padding="1" Margin="0,6"
|
|
|
|
BorderBrush="Red">
|
|
|
|
<TextBlock TextWrapping="Wrap" Width="300"
|
|
|
|
Text="{Binding ErrorMessageStr, FallbackValue=Error Message}"/>
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
<Rectangle HorizontalAlignment="Stretch" Fill="LightGray" Height="2" Margin="0,8,0,0"/>
|
|
|
|
|
|
|
|
<StackPanel IsEnabled="{Binding EnableAttributeControls}">
|
2021-09-22 21:39:39 +00:00
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,8,0,0">
|
|
|
|
<TextBlock Text="Address (hex):"/>
|
|
|
|
|
|
|
|
<TextBox Name="addrTextBox" Width="100" Margin="4,1,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"
|
|
|
|
Text="{Binding Path=AddressText, UpdateSourceTrigger=PropertyChanged}"
|
|
|
|
IsInactiveSelectionHighlightEnabled="True">
|
|
|
|
<TextBox.Resources>
|
|
|
|
<!-- default non-focus highlight color is nearly invisible -->
|
|
|
|
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}"
|
|
|
|
Color="LightBlue"/>
|
|
|
|
</TextBox.Resources>
|
|
|
|
</TextBox>
|
2019-12-26 01:15:37 +00:00
|
|
|
</StackPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
2021-10-05 03:41:19 +00:00
|
|
|
<TextBlock Name="enterAddressLabel" Margin="0,4,0,0"
|
|
|
|
Text="• Enter 16-bit or 24-bit address, e.g. $1000 or 01/be00"/>
|
2021-10-02 20:47:05 +00:00
|
|
|
<TextBlock Text="• Enter 'NA' to mark the region non-addressable"/>
|
2019-06-16 23:34:47 +00:00
|
|
|
</StackPanel>
|
|
|
|
|
2021-09-27 00:06:43 +00:00
|
|
|
<StackPanel IsEnabled="{Binding EnableAttributeControls}">
|
|
|
|
<GroupBox Header="Advanced" Padding="2,4" Margin="0,12,0,0">
|
|
|
|
<StackPanel>
|
|
|
|
<CheckBox Content="Use relative addressing"
|
|
|
|
IsChecked="{Binding UseRelativeAddressing}"/>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Margin="0,12,0,0">
|
|
|
|
<TextBlock Text="Pre-label:"/>
|
|
|
|
<TextBox Name="preLabelTextBox" Width="100" Margin="4,1,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"
|
|
|
|
Text="{Binding Path=PreLabelText, UpdateSourceTrigger=PropertyChanged}"/>
|
|
|
|
<TextBlock Text="(address: " Margin="8,0,0,0"/>
|
|
|
|
<TextBlock Text="{Binding Path=PreLabelAddressStr, FallbackValue=$1234}"
|
|
|
|
Margin="0,2,0,0"
|
|
|
|
FontFamily="{StaticResource GeneralMonoFont}"/>
|
|
|
|
<TextBlock Text=")"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
2021-10-05 03:41:19 +00:00
|
|
|
<TextBlock Name="validSyntaxLabel" Margin="0,4,0,0"
|
|
|
|
Text="• Must be valid label syntax; may not be a local label"/>
|
|
|
|
<TextBlock Name="notDuplicateLabel"
|
|
|
|
Text="• Must not be a duplicate of an existing label"/>
|
|
|
|
<TextBlock Name="parentNonAddrLabel"
|
|
|
|
Text="• Will not appear if parent region is non-addressable"/>
|
2021-09-22 21:39:39 +00:00
|
|
|
</StackPanel>
|
2021-09-27 00:06:43 +00:00
|
|
|
</GroupBox>
|
|
|
|
</StackPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
2021-09-27 00:06:43 +00:00
|
|
|
<DockPanel Margin="0,10,0,0" LastChildFill="False">
|
|
|
|
<Button DockPanel.Dock="Left" Content="Delete Region" Width="120"
|
|
|
|
IsEnabled="{Binding CanDeleteRegion}" Click="DeleteRegion_Click"/>
|
|
|
|
<Button DockPanel.Dock="Right" Content="Cancel" Width="70" Margin="4,0,0,0" IsCancel="True"/>
|
|
|
|
<Button DockPanel.Dock="Right" Grid.Column="1" Content="OK" Width="70"
|
|
|
|
IsDefault="True" IsEnabled="{Binding IsValid}" Click="OkButton_Click"/>
|
|
|
|
</DockPanel>
|
2021-09-22 21:39:39 +00:00
|
|
|
|
2019-06-16 23:34:47 +00:00
|
|
|
</StackPanel>
|
|
|
|
</Window>
|