@@ -151,17 +151,25 @@ class TextFile(private val book: Book) {
151
151
val chapterContent = blockContent.substring(seekPos, chapterStart)
152
152
val chapterLength = chapterContent.toByteArray(charset).size
153
153
val lastStart = toc.lastOrNull()?.start ? : curOffset
154
- if (book.getSplitLongChapter() && curOffset + chapterLength - lastStart > maxLengthWithToc) {
154
+ if (book.getSplitLongChapter()
155
+ && curOffset + chapterLength - lastStart > maxLengthWithToc
156
+ ) {
155
157
toc.lastOrNull()?.let {
156
158
it.end = it.start
157
159
}
158
160
// 章节字数太多进行拆分
159
- toc.addAll(
160
- analyze(
161
- lastStart + matcher.group().length,
162
- curOffset + chapterLength
163
- )
161
+ val lastTitle = toc.lastOrNull()?.title
162
+ val lastTitleLength = lastTitle?.toByteArray(charset)?.size ? : 0
163
+ val chapters = analyze(
164
+ lastStart + lastTitleLength,
165
+ curOffset + chapterLength
164
166
)
167
+ lastTitle?.let {
168
+ chapters.forEachIndexed { index, bookChapter ->
169
+ bookChapter.title = " $lastTitle (${index + 1 } )"
170
+ }
171
+ }
172
+ toc.addAll(chapters)
165
173
// 创建当前章节
166
174
val curChapter = BookChapter ()
167
175
curChapter.title = matcher.group()
@@ -189,7 +197,7 @@ class TextFile(private val book: Book) {
189
197
} else { // 否则就block分割之后,上一个章节的剩余内容
190
198
// 获取上一章节
191
199
val lastChapter = toc.last()
192
- toc.last() .isVolume =
200
+ lastChapter .isVolume =
193
201
chapterContent.substringAfter(lastChapter.title).isBlank()
194
202
// 将当前段落添加上一章去
195
203
lastChapter.end =
0 commit comments