7
7
8
8
namespace SharpBoy
9
9
{
10
- // 40x32bits OAMobj
11
- class Sprite
12
- {
13
- Byte posX ;
14
- Byte posY ;
15
- Byte tile ;
16
- Byte Flags ; // Bits 4 to 7
17
-
18
- public Sprite ( Byte [ ] data , Byte length )
19
- {
20
- if ( length != 4 )
21
- {
22
- // Wrong Sprite data?
23
- return ;
24
- }
25
-
26
- posX = data [ 0 ] ;
27
- posY = data [ 1 ] ;
28
- tile = data [ 2 ] ;
29
- Flags = data [ 3 ] ;
30
- }
31
- }
32
-
33
- public enum GameboyColors
34
- {
35
- GB_COLOR_WHITE ,
36
- GB_COLOR_LIGHT_GREY ,
37
- GB_COLOR_DARK_GREY ,
38
- GB_COLOR_BLACK
39
- } ;
40
-
41
- public enum LCDmodeFlag
42
- {
43
- LCD_MODE_FLAG_H_BLANK ,
44
- LCD_MODE_FLAG_V_BLANK ,
45
- LCD_MODE_FLAG_OAM_READ , // OAM Read time, moment when cpu dont have access to OAM
46
- LCD_MODE_FLAG_DATA_TO_LCD // During data send to renderer (LCD Driver)
47
- } ;
48
-
49
10
// AKA LCD CONTROLLER (In CGB)
50
11
51
12
/*
@@ -57,94 +18,34 @@ public enum LCDmodeFlag
57
18
58
19
class DMAController
59
20
{
60
- public DMAController ( ) { }
21
+ private Boolean enabled = false ;
22
+ private UInt16 adrBegin = 0 ;
23
+ private UInt16 bytesCopied = 0 ;
61
24
62
- // OAM mem is available only during mode 0-1 (H and Vblank period), However DMA have access to it all time (0xFF46)
63
- public Byte [ ] GetOAM ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFE00 , 0x009F ) ; }
64
-
65
- // Nah not actually that good i guess
66
- public Byte GetLCDCregister ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF40 ) ; }
67
- public BitArray GetLCDCregisterBits ( ) { return new BitArray ( GetLCDCregister ( ) ) ; }
68
-
69
- // TODO: Bit 7 Check!
70
- public void SetLCDCregister ( Byte value ) { Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF40 , value ) ; }
71
- public void SetLCDCregisterBit ( Byte bit , bool toogle )
72
- {
73
- // Fix this!
74
- SetLCDCregister ( toogle ? ( Byte ) ( GetLCDCregister ( ) | ( 1 << bit ) ) : ( Byte ) ( GetLCDCregister ( ) ^ ( 1 << bit ) ) ) ;
75
- }
76
-
77
- public bool IsDisplayOn ( ) { return GetLCDCregisterBits ( ) . Get ( 7 ) ; }
78
-
79
- /*
80
- Bit 6 - LYC=LY Coincidence Interrupt (1=Enable) (Read/Write)
81
- Bit 5 - Mode 2 OAM Interrupt (1=Enable) (Read/Write)
82
- Bit 4 - Mode 1 V-Blank Interrupt (1=Enable) (Read/Write)
83
- Bit 3 - Mode 0 H-Blank Interrupt (1=Enable) (Read/Write)
84
- Bit 2 - Coincidence Flag (0:LYC<>LY, 1:LYC=LY) (Read Only)
85
- Bit 1-0 - Mode Flag (Mode 0-3, see below) (Read Only)
86
- 0: During H-Blank
87
- 1: During V-Blank
88
- 2: During Searching OAM
89
- 3: During Transferring Data to LCD Driver
90
- */
25
+ public DMAController ( ) { }
91
26
92
- public Byte GetSTATregister ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF41 ) ; }
93
- public BitArray GetSTATregisterBits ( ) { return new BitArray ( GetSTATregister ( ) ) ; }
27
+ public Byte GetDMA ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF46 ) ; }
94
28
95
- public void setSTATregister ( Byte value ) { Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF41 , value ) ; }
96
- public void setSTATregisterBit ( Byte bit , bool toogle )
29
+ public void StartOAM ( UInt16 adr )
97
30
{
98
- // Fix this!
99
- setSTATregister ( toogle ? ( Byte ) ( GetSTATregister ( ) | ( 1 << bit ) ) : ( Byte ) ( GetSTATregister ( ) ^ ( 1 << bit ) ) ) ;
31
+ enabled = true ;
32
+ adrBegin = ( UInt16 ) ( adr << 8 ) ; // 0x0100
33
+ bytesCopied = 0 ;
100
34
}
101
35
102
- public LCDmodeFlag getSTATmodeFlag ( ) { return ( LCDmodeFlag ) ( GetSTATregister ( ) & 0x03 ) ; }
103
-
104
- public Byte GetSCY ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF42 ) ; }
105
- public Byte GetSCX ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF43 ) ; }
106
-
107
- public void SetSCY ( Byte value ) { Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF42 , value ) ; }
108
- public void SetSCX ( Byte value ) { Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF43 , value ) ; }
109
-
110
- public Byte GetLY ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF44 ) ; }
111
- public void SetLY ( Byte value )
36
+ public void Tick ( )
112
37
{
113
- if ( value > 153 )
114
- {
115
- Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF44 , 0 ) ;
116
- return ;
117
- }
118
- // Vblank period
119
- if ( value > 143 && ! Program . emulator . getCPU ( ) . GetInterruptController ( ) . IsInQueue ( InterruptController . Interrupt . INTERRUPT_VBLANK ) )
120
- {
121
- // Raise Interrupt!
122
- Program . emulator . getCPU ( ) . GetInterruptController ( ) . RaiseInterrupt ( InterruptController . Interrupt . INTERRUPT_VBLANK ) ;
123
- //Program.emulator.GetMemory().WriteToMemory(0xFF44, 0);
38
+ if ( ! enabled )
124
39
return ;
125
- }
126
-
127
-
128
- Program . emulator . GetMemory ( ) . WriteToMemory ( 0xFF44 , value ) ;
129
- }
130
-
131
- public Byte GetLYC ( ) { return Program . emulator . GetMemory ( ) . ReadFromMemory ( 0xFF45 ) ; }
132
40
133
- public bool CompareLYtoLYC ( ) { return GetLY ( ) == GetLYC ( ) ; }
134
-
135
- public void Update ( )
136
- {
137
- if ( CompareLYtoLYC ( ) )
41
+ // It always copies 160 (0xA0) bytes of data
42
+ while ( bytesCopied < 160 )
138
43
{
139
- // STAT INTERRUPT
140
- Program . emulator . getCPU ( ) . GetInterruptController ( ) . RaiseInterrupt ( InterruptController . Interrupt . INTERRUPT_LCDC ) ;
141
-
44
+ Program . emulator . GetMemory ( ) . WriteToMemory ( ( UInt16 ) ( 0xFE00 + bytesCopied ) , Program . emulator . GetMemory ( ) . ReadFromMemory ( ( UInt16 ) ( adrBegin + bytesCopied ) ) ) ;
45
+ bytesCopied ++ ;
142
46
}
143
- // Draw next line
144
- SetLY ( ( Byte ) ( GetLY ( ) + 1 ) ) ;
145
-
146
47
147
- //Logger.AppendLog(Logger.LOG_LEVEL.LOG_LEVEL_DEBUG, "DMAController: Update()") ;
48
+ enabled = false ;
148
49
}
149
50
}
150
51
}
0 commit comments